Skip to content

Commit 120ae29

Browse files
authored
Upgrading tox envs to python3.8 (open-telemetry#426)
Python3.8 is now stable, and we should run the common tasks under 3.8 instead of 3.7
1 parent d824f19 commit 120ae29

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ envlist =
1212
; pypy3-coverage
1313

1414
lint
15-
py37-tracecontext
16-
py37-{mypy,mypyinstalled}
15+
py38-tracecontext
16+
py38-{mypy,mypyinstalled}
1717
docs
1818
docker-tests
1919

2020
[travis]
2121
python =
22-
3.7: py37, lint, docs, docker-tests
22+
3.8: py38, lint, docs, docker-tests
2323

2424
[testenv]
2525
deps =
@@ -107,7 +107,7 @@ commands =
107107

108108

109109
[testenv:lint]
110-
basepython: python3.7
110+
basepython: python3.8
111111
recreate = True
112112
deps =
113113
-c dev-requirements.txt
@@ -139,8 +139,8 @@ changedir = docs
139139
commands =
140140
sphinx-build -E -a -W --keep-going -b html -T . _build/html
141141

142-
[testenv:py37-tracecontext]
143-
basepython: python3.7
142+
[testenv:py38-tracecontext]
143+
basepython: python3.8
144144
deps =
145145
# needed for tracecontext
146146
aiohttp~=3.6

0 commit comments

Comments
 (0)