[diffoscope] 01/01: Bump minimum version to 3.5, we use syntax introduced by PEP 448
Ximin Luo
infinity0 at debian.org
Wed Sep 20 16:02:36 CEST 2017
This is an automated email from the git hooks/post-receive script.
infinity0 pushed a commit to branch master
in repository diffoscope.
commit ad8ab31c0954256a382524642e87e206402f4495
Author: Ximin Luo <infinity0 at debian.org>
Date: Wed Sep 20 16:02:10 2017 +0200
Bump minimum version to 3.5, we use syntax introduced by PEP 448
https://docs.python.org/3/whatsnew/3.5.html#whatsnew-pep-448
---
setup.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/setup.py b/setup.py
index 060aa37..c322a8e 100644
--- a/setup.py
+++ b/setup.py
@@ -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',
],
)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/diffoscope.git
More information about the diffoscope
mailing list