Skip to content

Commit 9cb77c3

Browse files
committed
fix: disable Python 3.14 due to onnxruntime
1 parent 0274f85 commit 9cb77c3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
25+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2626
steps:
2727
- uses: actions/checkout@v6
2828
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ docs = [
3434
tests = ["coverage", "pytest-cov", "pytest>=7.4.0", "shapely"]
3535

3636
[project]
37-
authors = [{name = "Johann Christensen", email = "[email protected]"}]
37+
authors = [{ name = "Johann Christensen", email = "[email protected]" }]
3838
classifiers = [
3939
"Development Status :: 4 - Beta",
4040
"Environment :: X11 Applications",
@@ -82,7 +82,7 @@ license = "MIT"
8282
license-files = ["LICENSES/*"]
8383
name = "pycasx"
8484
readme = "README.md"
85-
requires-python = ">=3.10"
85+
requires-python = ">=3.10,<3.14"
8686
version = "1.0.1"
8787

8888
[project.scripts]

0 commit comments

Comments
 (0)