Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
language: python
python:
- "nightly"
- 3.6
- 3.5
- 3.4
- 2.7
- 3.3
- 3.6-dev
sudo: false
install:
- pip install --upgrade pip && pip install .
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import sys

v = sys.version_info
if v[:2] < (2,7) or (v[0] >= 3 and v[:2] < (3,3)):
error = "ERROR: %s requires Python version 2.7 or 3.3 or above." % name
if v[:2] < (2,7) or (v[0] >= 3 and v[:2] < (3,4)):
error = "ERROR: %s requires Python version 2.7 or 3.4 or above." % name
print(error, file=sys.stderr)
sys.exit(1)

Expand Down Expand Up @@ -59,6 +59,7 @@
license = 'BSD',
platforms = "Linux, Mac OS X, Windows",
keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],
python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
Expand All @@ -67,9 +68,9 @@
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)

Expand All @@ -87,10 +88,9 @@
extras_require = setuptools_args['extras_require'] = {
'test': ['pytest'],
'test:python_version=="2.7"': ["mock"],
# -- SUPPORT UNIFORM-WHEELS: Extra packages for Python 2.7, 3.3
# -- SUPPORT UNIFORM-WHEELS: Extra packages for Python 2.7
# SEE: https://bitbucket.org/pypa/wheel/ , CHANGES.txt (v0.24.0)
':python_version=="2.7"': ["enum34"],
':python_version=="3.3"': ["enum34"],
}

if 'setuptools' in sys.modules:
Expand Down