Skip to content

Commit

Permalink
Merge pull request #311 from collective/check-python-versions
Browse files Browse the repository at this point in the history
Add test runs on Python 3.7 and 3.8.
  • Loading branch information
mauritsvanrees committed Apr 22, 2020
2 parents 14ff684 + ce85c6d commit 54dd0d0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .travis.yml
@@ -1,12 +1,14 @@
language: python
cache: pip
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- pypy
- pypy3
install:
- pip install tox
script:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -43,6 +43,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
# to run for a specific environment, use ``tox -e ENVNAME``
[tox]
envlist = py27,py34,py35,py36,pypy,pypy3
envlist = py27,py34,py35,py36,py37,py38,pypy,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 54dd0d0

Please sign in to comment.