From e4241ab6cf8c3bd216bfaef74ede494535ff562f Mon Sep 17 00:00:00 2001 From: Kairo Araujo Date: Wed, 12 Jun 2019 09:29:46 +0200 Subject: [PATCH] Extend the compatibility with Python 3.6 and 3.7 This patch extends the compatibility with Python 3.6 and 3.7. Additionally it extends the six dependency version to 1.12.0 that may causes some cross compatibility with other sub-dependecies. --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0b26c3d..66167cc 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from distutils.core import setup -__VERSION__ = '1.3.1' +__VERSION__ = '1.3.2' setup( name='pydpkg', @@ -14,7 +14,7 @@ keywords=['apt', 'debian', 'dpkg', 'packaging'], install_requires=[ 'arpy==1.1.1', - 'six==1.10.0', + 'six==1.12.0', 'PGPy==0.4.1' ], extras_require={ @@ -30,6 +30,8 @@ "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 :: Implementation :: CPython", "Topic :: System :: Archiving :: Packaging", ]