Skip to content

Commit ff2e6c5

Browse files
committed
Merge tag '1.0.2' into develop
*January 12, 2023* StateMachine 1.0.2 fixes a regression bug blocking the library usage on Python 3.11. - Fixes [#316](#316) a bad import of 'inspect.getargspec' that was removed on Python 3.11, still backwards compatible with older versions.
2 parents d436bb7 + 04f7662 commit ff2e6c5

7 files changed

Lines changed: 20 additions & 5 deletions

File tree

docs/auto_examples/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Examples
66
Below 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

docs/releases/1.0.2.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.

docs/releases/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
1819
1.0.1
1920
1.0.0
2021

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.1
2+
current_version = 1.0.2
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
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",

statemachine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
__author__ = """Fernando Macedo"""
99
__email__ = "[email protected]"
10-
__version__ = "1.0.1"
10+
__version__ = "1.0.2"
1111

1212
__all__ = ["StateMachine", "State"]

tests/examples/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Examples
44
Below 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

0 commit comments

Comments
 (0)