Skip to content

Commit

Permalink
Merge pull request #68 from michael-k/test-matrix
Browse files Browse the repository at this point in the history
Add support for Python 3.7 and drop support for Python 3.3
  • Loading branch information
clarkduvall authored Sep 10, 2018
2 parents 56e5a27 + c1384e8 commit 0c58fb8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ python:
- 3.6
- 3.5
- 3.4
- 3.3
- 2.7
- pypy
matrix:
include:
- python: 3.7
dist: xenial
sudo: required
install:
- pip install -r requirements.txt
- pip install coveralls
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
'Programming Language :: Python :: 2',
'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',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist = py27, py32, py33, py34, py35, py36, pypy
envlist = py27, py34, py35, py36, py37, pypy

[testenv]
commands = {envpython} setup.py test
deps =
six==1.9.0
six==1.11.0

[testenv:benchmarks]
deps =
Expand Down

0 comments on commit 0c58fb8

Please sign in to comment.