From 63997620dbe054b8ef061f509a5f0062bc920ad8 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Sat, 22 Dec 2018 20:58:24 +0800 Subject: Requires Python >= 3.5 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index a7491a1..e08c8a2 100755 --- a/setup.py +++ b/setup.py @@ -24,8 +24,8 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -if sys.version_info < (3, 4): - sys.exit("%s requires Python >= 3.4 ..." % pkg.__pkgname__) +if sys.version_info < (3, 5): + sys.exit("%s requires Python >= 3.5 ..." % pkg.__pkgname__) setup( @@ -48,9 +48,9 @@ setup( "Operating System :: POSIX :: BSD", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Astronomy", ], packages=find_packages(exclude=["docs", "tests"]), -- cgit v1.2.2