Skip to content

Commit

Permalink
Add support for python3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminSchubert committed Jan 26, 2025
1 parent 093cca2 commit 070ddb9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy3.10"
include:
- os: macos-latest
Expand Down
2 changes: 1 addition & 1 deletion dwasfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
DOCS_REQUIREMENTS = "-rrequirements/requirements-docs.txt"
TEST_REQUIREMENTS = "-rrequirements/requirements-test.txt"
TYPES_REQUIREMENTS = "-rrequirements/requirements-types.txt"
SUPPORTED_PYTHONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]
SUPPORTED_PYTHONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
OLDEST_SUPPORTED_PYTHON = SUPPORTED_PYTHONS[0]
PYTHON_FILES = [
"docs/conf.py",
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,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",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
Expand Down

0 comments on commit 070ddb9

Please sign in to comment.