Skip to content

Commit

Permalink
Merge pull request #294 from blockchain-etl/add_python39_to_tests
Browse files Browse the repository at this point in the history
Add python 3.9 to tests
  • Loading branch information
medvedev1088 committed Dec 24, 2021
2 parents 75847dd + dba7adf commit 2a17fb6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ matrix:
env: TOX_POSARGS="-e py37"
- python: "3.8"
env: TOX_POSARGS="-e py38"
- python: "3.9"
env: TOX_POSARGS="-e py39"
install:
- travis_retry pip install tox
script:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ def read(fname):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
keywords='ethereum',
python_requires='>=3.6,<4',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist=
py{36,37,38}
py{36,37,38,39}

[testenv]
usedevelop=True
Expand All @@ -14,3 +14,4 @@ basepython=
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9

0 comments on commit 2a17fb6

Please sign in to comment.