Skip to content
Snippets Groups Projects
Commit ec05101b authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Bump Python requirement from 3.6 to 3.7; most distributions are either...

Bump Python requirement from 3.6 to 3.7; most distributions are either shipping with 3.5 or 3.7, so supporting 3.6 is not somewhat unnecessary but also arduous to test locally.
parent 00238195
No related branches found
No related tags found
No related merge requests found
Pipeline #162227 passed
......@@ -9,8 +9,8 @@ from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
if sys.version_info < (3, 6):
print("diffoscope requires at least python 3.6", file=sys.stderr)
if sys.version_info < (3, 7):
print("diffoscope requires at least python 3.7", file=sys.stderr)
sys.exit(1)
......@@ -70,7 +70,7 @@ setup(
'tlsh',
],
},
python_requires='>=3.6',
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
......@@ -78,7 +78,6 @@ setup(
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities',
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment