Skip to content

Commit

Permalink
For aarch64 CI, change setuptools install order
Browse files Browse the repository at this point in the history
  • Loading branch information
jnwatson committed Jan 4, 2025
1 parent 93c0cc4 commit 229daf0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,9 @@ jobs:
chown -R $(whoami) /github/home/.cache;
python --version;
/opt/python/${{ matrix.PYTHON }}/bin/python -m venv .venv;
.venv/bin/pip install -U pip setuptools;
yum install -y libffi-devel;
.venv/bin/pip install -U pip setuptools wheel cffi six;
.venv/bin/pip install -U pip wheel cffi six;
if \[ ${{ matrix.impl }} == cpython \] ; then
echo LMDB_FORCE_CPYTHON=1
else
Expand Down

0 comments on commit 229daf0

Please sign in to comment.