Skip to content

Commit f3dc838

Browse files
committed
Windows fix plus debug prints
1 parent be6ea02 commit f3dc838

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
echo "::group::Build wheel"
2-
pip install "$env:BUILD_DEPENDS"
2+
pip install @($env:BUILD_DEPENDS.split())
33
pip wheel -w "${env:WHEEL_SDIR}" --no-build-isolation ".\${env:REPO_DIR}"
44
ls -l "${env:GITHUB_WORKSPACE}/${env:WHEEL_SDIR}/"
55
echo "::endgroup::"

.github/workflows/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ echo "::endgroup::"
2727
echo "::group::Build wheel"
2828
np_dep=$(python ./get_numpy_version.py $MB_PYTHON_VERSION)
2929
export BUILD_DEPENDS="${BUILD_BASE} ${np_dep}"
30-
np_dep=$(python get_numpy_version.py ${MB_PYTHON_VERSION})
31-
export BUILD_DEPENDS=$np_dep
30+
echo "Build depends: ${BUILD_DEPENDS}"
31+
echo "Build base: ${BUILD_BASE}"
3232
clean_code
3333
build_wheel
3434
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"

0 commit comments

Comments
 (0)