Skip to content

Commit

Permalink
ci: run with Python 3.13 (#145)
Browse files Browse the repository at this point in the history
* ci: run with Python 3.13
  • Loading branch information
skshetry authored Oct 8, 2024
1 parent 5c257d1 commit 8afd194
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
pyv: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest, macos-latest]
pyv: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- {os: ubuntu-latest, pyv: 'pypy3.8'}

Expand All @@ -35,6 +35,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyv }}
allow-prereleases: true

- name: Upgrade pip and nox
run: |
Expand Down
12 changes: 11 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,17 @@ def docs(session: nox.Session) -> None:


@nox.session(
python=["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8", "pypy3.9", "pypy3.10"]
python=[
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
"pypy3.8",
"pypy3.9",
"pypy3.10",
]
)
def tests(session: nox.Session) -> None:
session.install(".[tests]")
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",
"Development Status :: 4 - Beta"
]
requires-python = ">=3.8"
Expand Down

0 comments on commit 8afd194

Please sign in to comment.