Skip to content
Snippets Groups Projects
Commit ad8ab31c authored by Ximin Luo's avatar Ximin Luo
Browse files

Bump minimum version to 3.5, we use syntax introduced by PEP 448

parent 82c8a37f
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,8 @@ from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
if sys.version_info < (3, 4):
print("diffoscope requires at least python 3.4", file=sys.stderr)
if sys.version_info < (3, 5):
print("diffoscope requires at least python 3.5", file=sys.stderr)
sys.exit(1)
......@@ -62,8 +62,8 @@ setup(
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'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