Skip to content

Commit

Permalink
ci: run tests on python 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
JGrothoff committed Nov 19, 2024
1 parent 5e56c66 commit d746f4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ on:
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install -r dev-requirements.txt -r eval-requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
"xlrd",
]
name = "pdf2aas"
requires-python = ">=3.10"
requires-python = ">=3.12"
dynamic = ["version"]

[project.optional-dependencies]
Expand Down

0 comments on commit d746f4c

Please sign in to comment.