Skip to content

Commit

Permalink
Merge pull request requests#345 from jdufresne/py37
Browse files Browse the repository at this point in the history
Add Travis/tox CI testing for Python 3 and pypy
  • Loading branch information
singingwolfboy authored Dec 27, 2018
2 parents 8962389 + 62610bf commit febb124
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
dist: xenial
sudo: false
language: python
cache: pip
Expand All @@ -6,6 +7,9 @@ python:
- 3.4
- 3.5
- 3.6
- 3.7
- pypy2.7-6.0
- pypy3.5-6.0
install:
- pip install -r requirements.txt
- pip install requests-mock
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ def readall(path):
'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',
],
zip_safe=False,
tests_require=[
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, pypy
envlist = py27, py34, py35, py36, py37, pypy, pypy3

[testenv]
deps=
Expand Down

0 comments on commit febb124

Please sign in to comment.