Skip to content

Commit 8cf00f7

Browse files
Fix PyPI install metadata
1 parent e35e929 commit 8cf00f7

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24+
with:
25+
submodules: recursive
2426

2527
- uses: actions/setup-python@v5
2628
with:

pyproject.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
[build-system]
2-
requires = ["scikit-build-core", "pybind11"]
2+
requires = [
3+
"scikit-build-core<0.11",
4+
"pybind11",
5+
"exceptiongroup<1.3; python_version < '3.11'",
6+
]
37
build-backend = "scikit_build_core.build"
48

59
[project]
610
name = "tinympc"
7-
version = "0.0.7"
11+
version = "0.0.8"
812
authors = [
913
{ name="Sam Schoedel", email="seschoedel@gmail.com" },
1014
{ name="Khai Nguyen", email="khai.nx1201@gmail.com" },
@@ -21,7 +25,8 @@ classifiers = [
2125
license = {file = "LICENSE"}
2226
dependencies = [
2327
"numpy>=1.7",
24-
"scipy>=0.13.2,<1.12.0",
28+
"scipy>=0.13.2,<1.12.0; python_version < '3.13'",
29+
"scipy>=1.14.1; python_version >= '3.13'",
2530
"setuptools"
2631
]
2732

0 commit comments

Comments
 (0)