diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-03-10 14:28:49 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-03-10 14:28:49 -0500 |
commit | 1da9d3752160430c91534a8868ceb8c5ad1451d4 (patch) | |
tree | aadca5e169b1630c9947ff409b9f20cba52ab723 /setup.py | |
parent | e82df50d9853a5a6a1c2d982ebd020918bf9dd3a (diff) | |
download | sqlalchemy-1da9d3752160430c91534a8868ceb8c5ad1451d4.tar.gz |
- bump minimum python version to 2.7
- add placeholder 1.2 release documentation, update intro numbers
Change-Id: I9f9969cbb9e95c2f750a5c16798e92c35a5ef6cf
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -12,8 +12,8 @@ from setuptools import find_packages from setuptools.command.test import test as TestCommand cmdclass = {} -if sys.version_info < (2, 6): - raise Exception("SQLAlchemy requires Python 2.6 or higher.") +if sys.version_info < (2, 7): + raise Exception("SQLAlchemy requires Python 2.7 or higher.") cpython = platform.python_implementation() == 'CPython' @@ -148,7 +148,6 @@ def run_setup(with_cext): "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: CPython", - "Programming Language :: Python :: Implementation :: Jython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Database :: Front-Ends", "Operating System :: OS Independent", |