Skip to content

Commit d938c69

Browse files
authored
Add Python 3.13 support. (#547)
1 parent e32441a commit d938c69

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/code_test_and_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# the weekly cron job.
3535
os: [ ubuntu-latest, windows-latest, macos-14, macos-13]
3636
# Test all Python versions for cron job, and only first/last for other triggers
37-
python-version: ${{ fromJson(github.event_name == 'schedule' && '["3.9", "3.10", "3.11", "3.12"]' || '["3.9", "3.12"]') }}
37+
python-version: ${{ fromJson(github.event_name == 'schedule' && '["3.9", "3.10", "3.11", "3.12", "3.13"]' || '["3.9", "3.13"]') }}
3838

3939
steps:
4040
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ classifiers = [
3434
"Programming Language :: Python :: 3.10",
3535
"Programming Language :: Python :: 3.11",
3636
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
3738
"Operating System :: OS Independent",
3839
"License :: OSI Approved :: BSD License",
3940
]

0 commit comments

Comments
 (0)