Skip to content

Commit 08dcf88

Browse files
ci: fix python upload stage, properly unset build verbosity
1 parent 944bea9 commit 08dcf88

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ jobs:
7070
run: cmake -G "Unix Makefiles" -B build -DCMAKE_BUILD_TYPE=Release -DSOURCEPP_BUILD_PYTHON_WRAPPERS=ON -DSOURCEPP_VERSION="${{inputs.version}}"
7171

7272
- name: Build BDist
73-
env:
74-
CIBW_BUILD_VERBOSITY: '0'
7573
run: |
7674
python -m pip install cibuildwheel==3.1.1
7775
python -m cibuildwheel --output-dir dist
@@ -98,7 +96,7 @@ jobs:
9896
- name: Download Wheels
9997
uses: actions/download-artifact@v4
10098
with:
101-
name: dist-*
99+
pattern: dist-*
102100
path: dist
103101
merge-multiple: true
104102

lang/python/cfg/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"issue tracker" = "https://github.com/craftablescience/sourcepp/issues"
2929
"funding" = "https://ko-fi.com/craftablescience"
3030

31+
3132
[tool.scikit-build]
3233
minimum-version = "build-system.requires"
3334
build-dir = "build/{wheel_tag}"
@@ -44,7 +45,6 @@ logging.level = "INFO"
4445
[tool.cibuildwheel]
4546
archs = ["auto64"]
4647
enable = ["pypy"]
47-
build-verbosity = 1
4848
#test-command = "pytest {project}/test"
4949
#test-requires = "pytest"
5050

0 commit comments

Comments
 (0)