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