Skip to content

Commit

Permalink
gh-336: support Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Saransh-cpp committed Oct 9, 2024
1 parent 1631757 commit 305501b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -70,7 +71,7 @@ jobs:
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: run-3.9,run-3.10,run-3.11,run-3.12
carryforward: run-3.9,run-3.10,run-3.11,run-3.12,run-3.13

build:
name: Build
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
nox.options.reuse_existing_virtualenvs = True
nox.options.sessions = ["lint", "tests"]

ALL_PYTHON = ["3.9", "3.10", "3.11", "3.12"]
ALL_PYTHON = ["3.9", "3.10", "3.11", "3.12", "3.13"]


@nox.session
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
Expand Down

0 comments on commit 305501b

Please sign in to comment.