Skip to content

Commit ff81625

Browse files
committed
Debug print of Numpy versions
1 parent 07d1866 commit ff81625

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/build.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ echo "::endgroup::"
77

88
echo "::group::Install wheel"
99
$test_dep = python .\print_deps.py $env:MB_PYTHON_VERSION ${env:REPO_DIR} -p test
10+
echo "test_dep: $test_dep"
1011
pip install @($test_dep.split())
1112
pip install --find-links ./wheelhouse --pre nipy
13+
pip list | findstr "numpy"
1214
echo "::endgroup::"
1315

1416
echo "::group::Test wheel"

.github/workflows/build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@ echo "::group::Install a virtualenv"
1919
source multibuild/travis_steps.sh
2020
before_install
2121
export TEST_DEPENDS=$(python ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} -p test)
22+
echo "TEST_DEPENDS: $TEST_DEPENDS"
2223
echo "::endgroup::"
2324

2425
echo "::group::Build wheel"
2526
export WHEEL_SDIR=wheelhouse
2627
clean_code
2728
build_wheel
29+
pip list | grep numpy
2830
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"
2931
echo "::endgroup::"
3032

0 commit comments

Comments
 (0)