diff --git a/.travis.yml b/.travis.yml index c43fea7..5415b6e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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; diff --git a/setup.py b/setup.py index c870b56..73cd396 100644 --- a/setup.py +++ b/setup.py @@ -35,5 +35,6 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], ) diff --git a/tox.ini b/tox.ini index 065a045..bc2c3fc 100644 --- a/tox.ini +++ b/tox.ini @@ -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 @@ -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/