8000 Add support for python3.9 (#600) · Raja-cloud/client_python@72d0f10 · GitHub
[go: up one dir, main page]

Skip to content

Commit 72d0f10

Browse files
authored
Add support for python3.9 (prometheus#600)
Signed-off-by: yzdann <22779039+yzdann@users.noreply.github.com>
1 parent 1ef8272 commit 72d0f10

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,11 @@ jobs:
4242
python: "3.8"
4343
env: TOXENV=py38
4444
- stage: test
45-
python: "3.8"
46-
env: TOXENV=py38-nooptionals
45+
python: "3.9"
46+
env: TOXENV=py39
47+
- stage: test
48+
python: "3.9"
49+
env: TOXENV=py39-nooptionals
4750
- stage: test
4851
python: "pypy"
4952
env: TOXENV=pypy

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"Programming Language :: Python :: 3.6",
4747
"Programming Language :: Python :: 3.7",
4848
"Programming Language :: Python :: 3.8",
49+
"Programming Language :: Python :: 3.9",
4950
"Programming Language :: Python :: Implementation :: CPython",
5051
"Programming Language :: Python :: Implementation :: PyPy",
5152
"Topic :: System :: Monitoring",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = coverage-clean,py26,py27,py34,py35,py36,py37,py38,pypy,pypy3,{py27,py38}-nooptionals,coverage-report,flake8,isort
2+
envlist = coverage-clean,py26,py27,py34,py35,py36,py37,py38,py39,pypy,pypy3,{py27,py39}-nooptionals,coverage-report,flake8,isort
33

44

55
[base]
@@ -40,7 +40,7 @@ deps =
4040
futures
4141
commands = coverage run --parallel -m pytest {posargs}
4242

43-
[testenv:py38-nooptionals]
43+
[testenv:py39-nooptionals]
4444
commands = coverage run --parallel -m pytest {posargs}
4545

4646
[testenv:coverage-clean]

0 commit comments

Comments
 (0)
0