File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 20
20
echo " ::group::Install a virtualenv"
21
21
source multibuild/common_utils.sh
22
22
source multibuild/travis_steps.sh
23
+ $PYTHON_EXE -m pip install virtualenv
23
24
before_install
24
25
echo " ::endgroup::"
25
26
26
27
echo " ::group::Build wheel"
27
28
export WHEEL_SDIR=wheelhouse
28
- pip install tomlkit
29
- export BUILD_DEPENDS=$( python ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} )
29
+ $PIP_CMD install tomlkit
30
+ export BUILD_DEPENDS=$( $PYTHON_EXE ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} )
30
31
clean_code
31
32
build_wheel
32
33
ls -l " ${GITHUB_WORKSPACE} /${WHEEL_SDIR} /"
@@ -35,7 +36,7 @@ echo "::endgroup::"
35
36
if [[ $PLAT != " arm64" ]]; then
36
37
# arm will not install on Github Workflows x86 architecture.
37
38
echo " ::group::Test wheel"
38
- export TEST_DEPENDS=$( python ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} -p test)
39
+ export TEST_DEPENDS=$( $PYTHON_EXE ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} -p test)
39
40
install_run
40
41
echo " ::endgroup::"
41
42
fi
You can’t perform that action at this time.
0 commit comments