Skip to content

Commit

Permalink
add python 3.8 to travis/tox and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Oct 20, 2019
1 parent 683505b commit 568b69b
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 @@ -11,4 +11,6 @@ matrix:
- name: '3.7'
python: 3.7
after_success: coveralls
- name: '3.8'
python: 3.8
script: tox
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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

[testenv:lint]
deps =
Expand All @@ -28,3 +29,7 @@ deps =
pytest-cov
coveralls
commands=python -m pytest tests/ --cov=solcast/

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

0 comments on commit 568b69b

Please sign in to comment.