Skip to content

Commit f833df6

Browse files
committed
Merge branch 'master' into develop
2 parents 7bc7be7 + 67bb195 commit f833df6

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
1+
dist: xenial # required for Python >= 3.7
12
language: python
23
env:
34
- REQUIREMENTS=true
45
- REQUIREMENTS=false
56
python:
67
- "2.7"
7-
- "3.3"
88
- "3.4"
99
- "3.5"
1010
- "3.6"
11-
- "pypy-5.4"
11+
- "3.7"
12+
# PyPy versions
13+
- "pypy3.5"
1214
# command to install dependencies
1315
install:
1416
- if [[ $REQUIREMENTS == true ]] ; then pip install -r requirements.txt ; fi
15-
- pip install coveralls pytest pytest-cov coverage codecov
17+
- pip install -U coveralls pytest pytest-cov coverage codecov
1618
- pip install -e .
17-
- if [[ ! $TRAVIS_PYTHON_VERSION == 'pypy-5.4' ]] ; then pip install regex; fi
19+
- if [[ ! $TRAVIS_PYTHON_VERSION == 'pypy3.5' ]] ; then pip install regex; fi
1820
# command to run tests
1921
script: py.test
20-
sudo: false
2122
after_success:
2223
- coveralls
2324
- codecov

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
html5lib>=1.0b10
2-
Pillow==3.0.0
2+
Pillow
33
regex

0 commit comments

Comments
 (0)