Skip to content

Commit

Permalink
support python 3.8, add to travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Oct 20, 2019
1 parent 30a24b8 commit 1505cb7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ matrix:
python: 3.6
- name: '3.7'
python: 3.7
- name: '3.8'
python: 3.8
script: tox
after_success: if [ "${TRAVIS_PYTHON_VERSION}" == "3.7" ]; then coveralls; fi;
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tox]
envlist =
lint
py{36,37}
py{36,37,38}

[travis]
python =
3.6: lint, py36
3.7: py37
3.8: py38

[flake8]
max-line-length=100
Expand All @@ -27,3 +28,7 @@ deps =
pytest-cov
coveralls
commands=python -m pytest tests/ --cov=eth_event/

[testenv:py38]
deps=pytest
commands=python -m pytest tests/

0 comments on commit 1505cb7

Please sign in to comment.