Skip to content

Commit

Permalink
Second attempt at fixing aarch64 setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
jnwatson committed Jan 4, 2025
1 parent 229daf0 commit 1622c80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,8 @@ 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 wheel cffi six;
.venv/bin/pip install -U pip setuptools wheel cffi six;
if \[ ${{ matrix.impl }} == cpython \] ; then
echo LMDB_FORCE_CPYTHON=1
else
Expand All @@ -191,6 +190,7 @@ jobs:
echo \"Windows: Envs are cpython=$Env:LMDB_FORCE_CPYTHON
cffi=$Env:LMDB_FORCE_CFFI pure=$Env:LMDB_PURE system=$Env:LMDB_FORCE_SYSTEM\";
.venv/bin/pip install setuptools flake8 pytest patch-ng;
/opt/python/${{ matrix.PYTHON }}/bin/python -m pip install setuptools;
/opt/python/${{ matrix.PYTHON }}/bin/python setup.py develop bdist_wheel;
ls dist;
/opt/python/${{ matrix.PYTHON }}/bin/python -m pip install pytest;
Expand Down

0 comments on commit 1622c80

Please sign in to comment.