Skip to content

Commit 51b8046

Browse files
authored
Merge pull request #11 from marselester/py35-38
Update Travis config to support Python 3.5-3.8, remove 3.3
2 parents 2db6d5b + 7c9b3fb commit 51b8046

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
language: python
22
python:
33
- 2.7
4-
- 3.3
54
- 3.4
5+
- 3.5
6+
- 3.6
7+
- 3.7
8+
- 3.8
69
install:
7-
- pip install ujson simplejson --use-mirrors
10+
- pip install ujson simplejson
811
- python setup.py install
912
script: nosetests tests
1013
notifications:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-e .
22

3-
tox==2.6.0
3+
tox==2.9.1

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py27,py35
2+
envlist=py27,py35,py36,py37,py38
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)