Skip to content

Commit

Permalink
Try dropping build dependency stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-brett committed Nov 10, 2023
1 parent 66d55f1 commit e8809a6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
echo "::group::Build wheel"
$wheel_sdir = "wheelhouse"
pip install tomli
$build_dep = python .\print_deps.py $env:MB_PYTHON_VERSION ${env:REPO_DIR}
pip install @($build_dep.split())
pip wheel -w "${wheel_sdir}" --no-build-isolation ".\${env:REPO_DIR}"
pip wheel -w "${wheel_sdir}" --no-deps ".\${env:REPO_DIR}"
ls -l "${env:GITHUB_WORKSPACE}/${wheel_sdir}/"
echo "::endgroup::"

Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,12 @@ echo "::group::Install a virtualenv"
source multibuild/common_utils.sh
source multibuild/travis_steps.sh
python3 -m pip install virtualenv tomli
export BUILD_DEPENDS=$(python3 ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR})
export TEST_DEPENDS=$(python3 ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} -p test)
before_install
echo "::endgroup::"

echo "::group::Build wheel"
export WHEEL_SDIR=wheelhouse
export BUILD_DEPENDS=$(python ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR})
clean_code
build_wheel
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"
Expand Down
2 changes: 1 addition & 1 deletion nipy
Submodule nipy updated 1 files
+0 −1 pyproject.toml

0 comments on commit e8809a6

Please sign in to comment.