Skip to content

Commit

Permalink
feat: support python 3.12 (#311)
Browse files Browse the repository at this point in the history
Add support for python 3.12
  • Loading branch information
jooola authored Oct 4, 2023
1 parent 277841d commit 7e8cd1d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

name: Python ${{ matrix.python-version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test:

parallel:
matrix:
- python_version: ["3.8", "3.9", "3.10", "3.11"]
- python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

image: python:${python_version}-alpine
before_script:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.8",
install_requires=[
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39, py310, py311
envlist = py38, py39, py310, py311, py312

[testenv]
passenv = FAKE_API_ENDPOINT
Expand All @@ -14,3 +14,4 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

0 comments on commit 7e8cd1d

Please sign in to comment.