Skip to content

Commit

Permalink
Dropped Python 3.2 support and add 3.5 support
Browse files Browse the repository at this point in the history
Recent dependencies are dropping Python 3.2 too.
  • Loading branch information
claudep committed Aug 30, 2016
1 parent 1fe0998 commit 0cf5495
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
install:
- python setup.py install
script: python test_tablib.py
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,11 @@
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
),
tests_require=['pytest'],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py26, py27, py32, py33, py34, pypy
envlist = py26, py27, py33, py34, py35, pypy

[testenv]
commands = python setup.py test
Expand Down

0 comments on commit 0cf5495

Please sign in to comment.