Skip to content

Commit

Permalink
feat: support python 3.13 (#451)
Browse files Browse the repository at this point in the history
Adds support for the newly released Python 3.13.
  • Loading branch information
jooola authored Oct 9, 2024
1 parent da0dc98 commit 4a514c7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 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", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

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 @@ -26,7 +26,7 @@ test:

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

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 @@ -33,6 +33,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
python_requires=">=3.8",
install_requires=[
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

0 comments on commit 4a514c7

Please sign in to comment.