Skip to content

Commit

Permalink
run 3.13 on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry authored Oct 21, 2024
1 parent 46e4c61 commit a5bbd99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
pyv: ['3.9', '3.10', '3.11', '3.12']
pyv: ['3.9', '3.10', '3.11', '3.12', '3.13']
include:
- {os: ubuntu-latest, pyv: 'pypy3.9'}
- {os: ubuntu-latest, pyv: 'pypy3.10'}

steps:
- name: Check out the repository
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def docs(session: nox.Session) -> None:
session.run("mkdocs", "build")


@nox.session(python=["3.9", "3.10", "3.11", "3.12", "pypy3.9"])
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"])
def tests(session: nox.Session) -> None:
session.install(".[tests]")
session.run(
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta"
]
requires-python = ">=3.9"
Expand Down

0 comments on commit a5bbd99

Please sign in to comment.