Skip to content

Commit

Permalink
Merge pull request #119 from markrwilliams/test-python-versions
Browse files Browse the repository at this point in the history
Remove Python 3.4 and add 3.8.
  • Loading branch information
glyph committed Oct 19, 2019
2 parents 798af93 + bcd0bd3 commit 23bb5e2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 18 deletions.
19 changes: 14 additions & 5 deletions .travis.yml
Expand Up @@ -16,11 +16,6 @@ matrix:
- python: pypy
env: TOX_ENV=pypy-noextras

- python: 3.4
env: TOX_ENV=py34-extras
- python: 3.4
env: TOX_ENV=py34-noextras

- python: 3.5
env: TOX_ENV=py35-extras
- python: 3.5
Expand All @@ -31,6 +26,20 @@ matrix:
- python: 3.6
env: TOX_ENV=py36-noextras

- python: 3.7
env: TOX_ENV=py37-extras
- python: 3.7
env: TOX_ENV=py37-noextras

- python: 3.8
env: TOX_ENV=py38-extras
- python: 3.8
env: TOX_ENV=py38-noextras

jobs:
allow_failures:
- python: 3.8

install:
- sudo apt-get install graphviz
- pip install tox coveralls
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -52,8 +52,8 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)
13 changes: 1 addition & 12 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = coverage-clean,{py27,pypy,py34,py35,py36}-{extras,noextras},coverage-report
envlist = coverage-clean,{py27,pypy,py35,py36,py38}-{extras,noextras},coverage-report

[testenv]
deps =
Expand Down Expand Up @@ -31,17 +31,6 @@ commands = pytest --benchmark-only benchmark/
deps = {[testenv:benchmark]deps}
commands = {[testenv:benchmark]commands}

[testenv:py34-benchmark]
deps = {[testenv:benchmark]deps}
commands = {[testenv:benchmark]commands}

[testenv:py34-extras]
deps =
coverage
pytest
graphviz>=0.4.9
Twisted>=16.2.0,<19.7.0

[testenv:py35-benchmark]
deps = {[testenv:benchmark]deps}
commands = {[testenv:benchmark]commands}
Expand Down

0 comments on commit 23bb5e2

Please sign in to comment.