Skip to content

Commit 2feb4dd

Browse files
committed
Virtualenv python needs tomli
1 parent 8aa0fbe commit 2feb4dd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ fi
1616
echo "::group::Install a virtualenv"
1717
source multibuild/common_utils.sh
1818
source multibuild/travis_steps.sh
19-
python3 -m pip install virtualenv tomli
19+
python3 -m pip install virtualenv
2020
before_install
2121
echo "::endgroup::"
2222

2323
echo "::group::Build wheel"
2424
export WHEEL_SDIR=wheelhouse
25-
export BUILD_DEPENDS=$(python3 ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR})
25+
python -m pip install tomli
26+
export BUILD_DEPENDS=$(python ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR})
2627
clean_code
2728
build_wheel
2829
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"

0 commit comments

Comments
 (0)