Skip to content

Commit 95ee64a

Browse files
committed
Fix missing dependencies
1 parent 74358bd commit 95ee64a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/pypi_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: |
6666
pip install --upgrade pip
6767
pip install -v .
68-
pip install pytest
68+
pip install pytest build
6969
7070
- name: Build Source Distribution
7171
run: |

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ requires = [
55
# "scikit-build-core >= 0.9.10",
66
"pytest >= 6.0", # For running tests
77
"setuptools_scm>=8", # For version management
8-
"setuptools>=58.0.0", # For building the package
8+
"setuptools>=61.0.0", # For building the package
99
"pytest>=8.0.0", # For running tests
1010
]
1111
# build-backend = "scikit_build_core.build"
12+
build-backend = "setuptools.build_meta"
1213

1314
[project]
1415
# Basic project metadata

0 commit comments

Comments
 (0)