Skip to content

Commit 6bdfb25

Browse files
committed
updated build pipeline
1 parent e405ef3 commit 6bdfb25

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,13 @@ jobs:
3737
with:
3838
python-version: '3.12'
3939

40-
- name: Install uv
41-
uses: astral-sh/setup-uv@v7
40+
- name: Install dependencies
41+
run: |
42+
python -m pip install --upgrade pip
43+
pip install build
4244
43-
- name: Build with uv
44-
run: uv build
45+
- name: Build package
46+
run: python -m build
4547

4648
- name: Upload dist artifact
4749
uses: actions/upload-artifact@v5

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"]
2+
requires = ["setuptools>=69", "wheel", "setuptools_scm>=8"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -67,7 +67,7 @@ keywords = [
6767
write_to = "src/shapiq/_version.py"
6868

6969
[tool.setuptools.packages.find]
70-
where = ["src"]
70+
where = ["./src"]
7171
include = ["shapiq*"]
7272

7373
[tool.setuptools.dynamic]

0 commit comments

Comments
 (0)