- [FIX]
EventCallbacktyping usingTypeVar - [FIX] suppress some pyright typecheck issues involving ClassVars
- [CHANGE] some inner exceptions are now raise from None
- [CHANGE]
Event.failraisesTypeErrorif it is not passed anException - [CHANGE] use ruff for code formatting and linting
- [CHANGE] add pyright typechecking to test suite
- [CHANGE] code refactoring for ruff conformance
- [DOCS] update examples to fix various lint issues
- [BREAKING] Python 3.8 is the minimum supported version
- [BREAKING] Contemporary setuptools based packaging
- [NEW] Add
Process.nameproperty - [FIX] Support Python 3.12
- [CHANGE] use PEP-563 postponed evaluation of annotations
- [CHANGE] remove __path__ munging for namespace package
- [DOCS] Fix machine shop example to avoid negative times
- [DOCS] Update to sphinx 7.2.6
- [DOCS] Remove sys.path hack in sphinx config
- [DOCS] Remove sphinx
TYPE_CHECKINGcircular import hack - [DOCS] Remove sphinx extensions circular import hack
- [DOCS] SimJulia renamed to ConcurrentSim.jl
- [CHANGE] Tested with Python 3.9, 3.10, and 3.11
- [CHANGE] Improved docs w.r.t. triggered and processed events
- [CHANGE] Improved gas station example
- [FIX] ClassVar annotations in BaseResource
- [FIX] Documentation typos
- [FIX] Help static analyzers find exported symbols
- [FIX]
license_filedeprecation in setup.cfg - [FIX] Do not re-annotate type of
__path__ - [FIX] Annotate
ConditionValue.__init__()return value - [FIX] Unbreak docs build by updating to Sphinx 6.2.1
- [FIX] Workaround Sphinx circular import problem
- [FIX] Typing repair for Get and Put as ContextManagers
- [BREAKING] Python 3.6 is the minimum supported version
- [BREAKING]
BaseEnvironmentis eliminated. InheritEnvironmentinstead. - [BREAKING]
Environment.exit()is eliminated. Usereturninstead. - [NEW] "Porting from SimPy 3 to 4" topical guide in docs
- [NEW] SimPy is now fully type annotated (PEP-483, PEP-484)
- [NEW] PEP-517/PEP-518 compatible build system
- [FIX] Repair several minor typos in documentation
- [FIX] Possible AttributeError in Process._resume()
- [CHANGE] Use setuptools_scm in distribution build
- [FIX] Fix URLs for GitLab.com and re-release
- [FIX] Repair Environment.exit() to support PEP-479 and Python 3.7.
- [FIX] Fix wrong usage_since calculation in preemptions
- [NEW] Add "Time and Scheduling" section to docs
- [CHANGE] Move Interrupt from events to exceptions
- [FIX] Various minor documentation improvements
- [FIX] Conditions no longer leak callbacks on events (thanks to Peter Grayson).
- [NEW] PriorityStore resource and performance benchmarks were implemented by Peter Grayson.
- [FIX] Support for identifying nested preemptions was added by Cristian Klein.
- [NEW] Added a monitoring guide to the documentation.
- [FIX] Improved packaging (thanks to Larissa Reis).
- [FIX] Fixed and improved various test cases.
- [FIX] State of resources and requests were inconsistent before the request has been processed (issue #62).
- [FIX] Empty conditions were never triggered (regression in 3.0.6, issue #63).
- [FIX]
Environment.run()will fail if the until event does not get triggered (issue #64). - [FIX] Callback modification during event processing is now prohibited (thanks to Andreas Beham).
- [NEW] Guide to SimPy resources.
- [CHANGE] Improve performance of condition events.
- [CHANGE] Improve performance of filter store (thanks to Christoph Körner).
- [CHANGE] Exception tracebacks are now more compact.
- [FIX]
AllOfconditions handle already processed events correctly (issue #52). - [FIX] Add
sync()toRealtimeEnvironmentto reset its internal wall-clock reference time (issue #42). - [FIX] Only send copies of exceptions into processes to prevent traceback modifications.
- [FIX] Documentation improvements.
- [CHANGE] Move interruption and all of the safety checks into a new event (pull request #30)
- [FIX]
FilterStore.get()now behaves correctly (issue #49). - [FIX] Documentation improvements.
- [NEW] Verified, that SimPy works on Python 3.4.
- [NEW] Guide to SimPy events
- [CHANGE] The result dictionary for condition events (
AllOF/&andAnyOf/|) now is an OrderedDict sorted in the same way as the original events list. - [CHANGE] Condition events now also except processed events.
- [FIX]
Resource.request()directly afterResource.release()no longer successful. The process now has to wait as supposed to. - [FIX]
Event.fail()now accept all exceptions derived fromBaseExceptioninstead of onlyException.
- [NEW] Guide to SimPy basics.
- [NEW] Guide to SimPy Environments.
- [FIX] Timing problems with real time simulation on Windows (issue #46).
- [FIX] Installation problems on Windows due to Unicode errors (issue #41).
- [FIX] Minor documentation issues.
- [FIX] The default capacity for
ContainerandFilterStoreis now alsoinf.
- [FIX] Documentation and default parameters of
Storedidn't match. Its default capacity is nowinf.
SimPy 3 has been completely rewritten from scratch. Our main goals were to simplify the API and code base as well as making SimPy more flexible and extensible. Some of the most important changes are:
- Stronger focus on events. Processes yield event instances and are suspended until the event is triggered. An example for an event is a timeout (formerly known as hold), but even processes are now events, too (you can wait until a process terminates).
- Events can be combined with
&(and) and|(or) to create condition events. - Process can now be defined by any generator function. You don't have to
subclass
Processanymore. - No more global simulation state. Every simulation stores its state in an
environment which is comparable to the old
Simulationclass. - Improved resource system with newly added resource types.
- Removed plotting and GUI capabilities. Pyside and matplotlib are much better with this.
- Greatly improved test suite. Its cleaner, and the tests are shorter and more numerous.
- Completely overhauled documentation.
There is a guide for porting from SimPy 2 to SimPy 3. If you want to stick
to SimPy 2 for a while, change your requirements to 'SimPy>=2.3,<3'.
All in all, SimPy has become a framework for asynchronous programming based on coroutines. It brings more than ten years of experience and scientific know-how in the field of event-discrete simulation to the world of asynchronous programming and should thus be a solid foundation for everything based on an event loop.
You can find information about older versions on the history page