From b47187af376431b83eb71c32fd6737b6baad8a9c Mon Sep 17 00:00:00 2001 From: Alexandre Decan Date: Fri, 10 Jul 2020 11:09:03 +0200 Subject: [PATCH] Prepare hot fix 1.6.1 --- CHANGELOG.rst | 6 ++++++ setup.py | 2 +- sismic/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 99b9031..1666b33 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.6.1 (2020-07-10) +------------------ + + - (Fixed) Remove dependency to ``typing`` since it is no longer required for Python 3.5 and prevents the installation of Sismic. + + 1.6.0 (2020-03-28) ------------------ diff --git a/setup.py b/setup.py index 75fad0a..644312a 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,7 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ], keywords='statechart state machine interpreter model uml scxml harel', @@ -49,7 +50,6 @@ 'ruamel.yaml>=0.12.10', 'schema>=0.6.2', 'behave>=1.2.6', - 'typing>=3.5.1' ], entry_points={ diff --git a/sismic/__init__.py b/sismic/__init__.py index 7658dd5..ddc5974 100644 --- a/sismic/__init__.py +++ b/sismic/__init__.py @@ -1,5 +1,5 @@ __package__ = 'sismic' -__version__ = '1.6.0' +__version__ = '1.6.1' __licence__ = 'LGPL3' __author__ = 'Alexandre Decan' __url__ = 'https://github.com/AlexandreDecan/sismic/'