summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index da45c09d6..0eb4b8f83 100644
--- a/setup.py
+++ b/setup.py
@@ -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",