From 13b361e98c8f3ac0948c48814df418e18d5ed709 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 23 Nov 2020 15:48:04 +0100 Subject: [PATCH 1/2] Enable compatibility with Python 3.6+ Replace enum34 with enum-compat, so that in newer Python enum34 is not imported - since it's incompatible with a built-in one. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 35eb174..61a35c7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ future six zope.interface -enum34 +enum-compat == 0.0.3 From fe5e08323956cbce03794a837cc642def437dadb Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 23 Nov 2020 17:41:32 +0100 Subject: [PATCH 2/2] Update release version and compatibility classifiers --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3f492da..d50aa3b 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def read_requirements(filename): setup( name='serialization', - version='1.2.0', + version='1.2.1', description='Smart serialization library for Python language', long_description=readme + '\n\n' + history, author='Sebastien Merle, Marek Kowalski, Mateusz Probachta', @@ -60,6 +60,9 @@ def read_requirements(filename): 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ], tests_require=test_requirements, )