Skip to content

Commit

Permalink
chore: add 3.13 and fix tests to run on different Pythons (#214)
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii authored Oct 2, 2024
1 parent 038144c commit 4fe905b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
python-version: "3.x"
- name: Check manifest
uses: pre-commit/action@v3.0.1
with:
extra_args: --hook-stage manual

checks:
runs-on: ubuntu-latest
Expand All @@ -34,15 +32,18 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"

name: Check Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install package
run: python -m pip install -e .[test]
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,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",
]
dynamic = ["version"]
Expand Down

0 comments on commit 4fe905b

Please sign in to comment.