File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66Below is a gallery of StateMachine examples.
77
88
9- .. tip :: Try Python State Machine directly from your browser!
9+ .. tip :: Try Python State Machine directly from your browser! (experimental)
1010
1111 Run our examples and try hacks right now on this `JupyterLab <../lite/lab/index.html >`_
1212
Original file line number Diff line number Diff line change 1+ # StateMachine 1.0.2
2+
3+ * January 12, 2023*
4+
5+
6+ StateMachine 1.0.2 fixes a regression bug blocking the library usage on
7+ Python 3.11.
8+
9+
10+ ## Bugfixes
11+
12+ - Fixes [ #316 ] ( https://github.com/fgmacedo/python-statemachine/issues/316 ) a bad
13+ import of 'inspect.getargspec' that was removed on Python 3.11,
14+ still backwards compatible with older versions.
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Below are release notes through StateMachine and its patch releases.
1515``` {toctree}
1616:maxdepth: 1
1717
18+ 1.0.2
18191.0.1
19201.0.0
2021
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.0.1
2+ current_version = 1.0.2
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change 1515
1616setup (
1717 name = "python-statemachine" ,
18- version = "1.0.1 " ,
18+ version = "1.0.2 " ,
1919 description = "Python Finite State Machines made easy." ,
2020 long_description = long_description ,
2121 author = "Fernando Macedo" ,
Original file line number Diff line number Diff line change 77
88__author__ = """Fernando Macedo"""
9910- __version__ = "1.0.1 "
10+ __version__ = "1.0.2 "
1111
1212__all__ = ["StateMachine" , "State" ]
Original file line number Diff line number Diff line change 44Below is a gallery of StateMachine examples.
55
66
7- .. tip :: Try Python State Machine directly from your browser!
7+ .. tip :: Try Python State Machine directly from your browser! (experimental)
88
99 Run our examples and try hacks right now on this `JupyterLab <../lite/lab/index.html >`_
1010
You can’t perform that action at this time.
0 commit comments