diff options
author | Philip Paquette <pcpaquette@gmail.com> | 2019-07-21 13:22:24 -0400 |
---|---|---|
committer | Philip Paquette <pcpaquette@gmail.com> | 2019-07-21 15:45:33 -0400 |
commit | 111ed93a67e2e98ab95497fd7f42d554f7e5b36f (patch) | |
tree | a23f22f761ecd0e932124fafaedf2aa141efc235 /setup.py | |
parent | 34a0625f605bce0c72c5a3c4246ec8ba8a0e72e9 (diff) |
Deprecated support for Python 3.4 (reached end-of-life)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -18,12 +18,12 @@ import sys from setuptools import setup, find_packages -# Requiring python 3.4+. -# To simplify code for Tornado coroutines return statements, we don't support Python 3.3 +# Requiring python 3.5+. +# To simplify code for Tornado coroutines return statements, we don't support Python 3.4 # ( more info here: http://www.tornadoweb.org/en/stable/guide/coroutines.html#coroutines ). -if (sys.version_info.major, sys.version_info.minor) <= (3, 3): - print("This Python is only compatible with Python 3.4+, but you are running " - "Python {}.{}. The installation will likely fail.".format(sys.version_info.major, sys.version_info.minor)) +if (sys.version_info.major, sys.version_info.minor) <= (3, 4): + print("This package is only compatible with Python 3.5+, but you are running Python {}.{}." + .format(sys.version_info.major, sys.version_info.minor)) # ------------------------------------ # Configuration @@ -48,7 +48,6 @@ setup(name=PACKAGE_NAME, tests_require=['pytest'], classifiers=['License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Programming Language:: Python:: 3', - 'Programming Language:: Python:: 3.4', 'Programming Language:: Python:: 3.5', 'Programming Language:: Python:: 3.6', 'Programming Language:: Python:: 3.7', |