Skip to content

Commit b56b292

Browse files
committed
Add explicit Python 3.12 support
1 parent 9dca187 commit b56b292

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ steps:
1515
- "3.9"
1616
- "3.10"
1717
- "3.11"
18+
- "3.12"
1819
connection:
1920
- "urllib3"
2021
- "requests"

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
)
3131

3232

33-
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"])
33+
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"])
3434
def test(session):
3535
session.install(".")
3636
session.install("-r", "dev-requirements.txt")

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,11 @@
8686
"Programming Language :: Python :: 3.9",
8787
"Programming Language :: Python :: 3.10",
8888
"Programming Language :: Python :: 3.11",
89+
"Programming Language :: Python :: 3.12",
8990
"Programming Language :: Python :: Implementation :: CPython",
9091
"Programming Language :: Python :: Implementation :: PyPy",
9192
],
92-
python_requires=">=3.6, <4",
93+
python_requires=">=3.6",
9394
install_requires=install_requires,
9495
extras_require={
9596
"requests": ["requests>=2.4.0, <3.0.0"],

0 commit comments

Comments
 (0)