-
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
61 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
# StateMachine 2.3.5 | ||
|
||
*Not released yet* | ||
*September 9, 2024* | ||
|
||
### Python compatibility 2.3.5 | ||
|
||
Added Python 3.13 on the test matrix. StateMachine 2.3.5 supports Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and 3.13. | ||
|
||
## Bugfixes in 2.3.5 | ||
|
||
- Fixes [#469](https://github.com/fgmacedo/python-statemachine/issues/469) compatibility with pydot 3.0.0+. | ||
- Fixes [#473](https://github.com/fgmacedo/python-statemachine/issues/473) property support for type checking. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "python-statemachine" | ||
version = "2.3.4" | ||
version = "2.3.5" | ||
description = "Python Finite State Machines made easy." | ||
authors = ["Fernando Macedo <[email protected]>"] | ||
maintainers = [ | ||
|
@@ -27,6 +27,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Software Development :: Libraries", | ||
"Framework :: AsyncIO", | ||
"Intended Audience :: Developers", | ||
|
@@ -49,10 +50,9 @@ pytest = "*" | |
pytest-cov = "*" | ||
pytest-sugar = "^1.0.0" | ||
pytest-mock = "^3.10.0" | ||
pytest-profiling = "^1.7.0" | ||
pytest-benchmark = "^4.0.0" | ||
pytest-asyncio = "*" | ||
django = { version = "^5.0.3", python = ">3.10" } | ||
django = { version = "^5.0.8", python = ">3.10" } | ||
pytest-django = { version = "^4.8.0", python = ">3.8" } | ||
|
||
[tool.poetry.group.docs.dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
|
||
__author__ = """Fernando Macedo""" | ||
__email__ = "[email protected]" | ||
__version__ = "2.3.4" | ||
__version__ = "2.3.5" | ||
|
||
__all__ = ["StateMachine", "State"] |