Skip to content

Commit

Permalink
Upgrading tox envs to python3.8 (#426)
Browse files Browse the repository at this point in the history
Python3.8 is now stable, and we should run the common tasks under 3.8
instead of 3.7
  • Loading branch information
toumorokoshi authored Feb 18, 2020
1 parent d824f19 commit 120ae29
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ envlist =
; pypy3-coverage

lint
py37-tracecontext
py37-{mypy,mypyinstalled}
py38-tracecontext
py38-{mypy,mypyinstalled}
docs
docker-tests

[travis]
python =
3.7: py37, lint, docs, docker-tests
3.8: py38, lint, docs, docker-tests

[testenv]
deps =
Expand Down Expand Up @@ -107,7 +107,7 @@ commands =


[testenv:lint]
basepython: python3.7
basepython: python3.8
recreate = True
deps =
-c dev-requirements.txt
Expand Down Expand Up @@ -139,8 +139,8 @@ changedir = docs
commands =
sphinx-build -E -a -W --keep-going -b html -T . _build/html

[testenv:py37-tracecontext]
basepython: python3.7
[testenv:py38-tracecontext]
basepython: python3.8
deps =
# needed for tracecontext
aiohttp~=3.6
Expand Down

0 comments on commit 120ae29

Please sign in to comment.