Skip to content

Commit e8809a6

Browse files
committed
Try dropping build dependency stuff.
1 parent 66d55f1 commit e8809a6

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/build.ps1

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
echo "::group::Build wheel"
22
$wheel_sdir = "wheelhouse"
33
pip install tomli
4-
$build_dep = python .\print_deps.py $env:MB_PYTHON_VERSION ${env:REPO_DIR}
5-
pip install @($build_dep.split())
6-
pip wheel -w "${wheel_sdir}" --no-build-isolation ".\${env:REPO_DIR}"
4+
pip wheel -w "${wheel_sdir}" --no-deps ".\${env:REPO_DIR}"
75
ls -l "${env:GITHUB_WORKSPACE}/${wheel_sdir}/"
86
echo "::endgroup::"
97

.github/workflows/build.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,12 @@ echo "::group::Install a virtualenv"
1717
source multibuild/common_utils.sh
1818
source multibuild/travis_steps.sh
1919
python3 -m pip install virtualenv tomli
20-
export BUILD_DEPENDS=$(python3 ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR})
2120
export TEST_DEPENDS=$(python3 ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} -p test)
2221
before_install
2322
echo "::endgroup::"
2423

2524
echo "::group::Build wheel"
2625
export WHEEL_SDIR=wheelhouse
27-
export BUILD_DEPENDS=$(python ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR})
2826
clean_code
2927
build_wheel
3028
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"

nipy

Submodule nipy updated 1 file

0 commit comments

Comments
 (0)