Skip to content

Commit 7e8cd1d

Browse files
authored
feat: support python 3.12 (#311)
Add support for python 3.12
1 parent 277841d commit 7e8cd1d

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10", "3.11"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1515

1616
name: Python ${{ matrix.python-version }}
1717
steps:

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test:
2525

2626
parallel:
2727
matrix:
28-
- python_version: ["3.8", "3.9", "3.10", "3.11"]
28+
- python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2929

3030
image: python:${python_version}-alpine
3131
before_script:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"Programming Language :: Python :: 3.9",
3737
"Programming Language :: Python :: 3.10",
3838
"Programming Language :: Python :: 3.11",
39+
"Programming Language :: Python :: 3.12",
3940
],
4041
python_requires=">=3.8",
4142
install_requires=[

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38, py39, py310, py311
2+
envlist = py38, py39, py310, py311, py312
33

44
[testenv]
55
passenv = FAKE_API_ENDPOINT
@@ -14,3 +14,4 @@ python =
1414
3.9: py39
1515
3.10: py310
1616
3.11: py311
17+
3.12: py312

0 commit comments

Comments
 (0)