Skip to content

Commit

Permalink
Fix #260: Add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
robhudson authored and willkg committed Oct 24, 2024
1 parent 9b2db32 commit 06ab39e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down Expand Up @@ -111,6 +112,7 @@ envlist =
py310
py311
py312
py313
uv_python_preference = only-managed
[gh-actions]
Expand All @@ -120,6 +122,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
extras = dev,ini,sphinx,yaml
Expand Down

0 comments on commit 06ab39e

Please sign in to comment.