8000 Merge pull request #873 from prometheus/support-3.11 · hugovk/client_python@4ab083e · GitHub
[go: up one dir, main page]

Skip to content

Commit 4ab083e

Browse files
authored
Merge pull request prometheus#873 from prometheus/support-3.11
Add tests for Python 3.11
2 parents ba34fad + b387d04 commit 4ab083e

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python:
3131
type: string
3232
docker:
33-
- image: circleci/python:<< parameters.python >>
33+
- image: cimg/python:<< parameters.python >>
3434
environment:
3535
TOXENV: "py<< parameters.python >>"
3636
steps:
@@ -80,6 +80,7 @@ workflows:
8080
- "3.8"
8181
- "3.9"
8282
- "3.10"
83+
- "3.11"
8384
- test_nooptionals:
8485
matrix:
8586
parameters:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"Programming Language :: Python :: 3.8",
4444
"Programming Language :: Python :: 3.9",
4545
"Programming Language :: Python :: 3.10",
46+
"Programming Language :: Python :: 3.11",
4647
"Programming Language :: Python :: Implementation :: CPython",
4748
"Programming Language :: Python :: Implementation :: PyPy",
4849
"Topic :: System :: Monitoring",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = coverage-clean,py3.6,py3.7,py3.8,py3.9,py3.10,pypy3.7,py3.9-nooptionals,coverage-report,flake8,isort,mypy
2+
envlist = coverage-clean,py3.6,py3.7,py3.8,py3.9,py3.10,py3.11,pypy3.7,py3.9-nooptionals,coverage-report,flake8,isort,mypy
33

44
[base]
55
deps =

0 commit comments

Comments
 (0)
0