Skip to content

Commit ccd3d0b

Browse files
authored
bump minimum setuptools version (#564)
* bump minimum setuptools version * try to fix the aarch64 test build
1 parent 3d63a74 commit ccd3d0b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ jobs:
8989
${{ env.img }} \
9090
bash -exc '${{ env.py }} -m pip install virtualenv && ${{ env.py }} -m venv .env && \
9191
source .env/bin/activate && \
92-
python -m pip install --upgrade pip wheel setuptools && \
92+
python -m pip install --upgrade pip wheel setuptools_scm[toml] && \
9393
python -m pip install -r mypy-requirements.txt -r requirements.txt && \
94-
MYPYPATH=typeshed SCHEMA_SALAD_USE_MYPYC=1 pip install -e .[pycodegen] && \
94+
MYPYPATH=typeshed SCHEMA_SALAD_USE_MYPYC=1 python -m pip install -e .[pycodegen] && \
9595
deactivate'
9696
- name: Test with pytest
9797
run: |

release-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ else
1919
fi
2020
run_tests="bin/py.test --pyargs ${module}"
2121
pipver=20.3.3 # minimum required version of pip for Python 3.10
22-
setuptoolsver=50.0.0 # required for Python 3.10
22+
setuptoolsver=50.0.1 # required for Python 3.10
2323
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
2424

2525
rm -Rf testenv? || /bin/true

0 commit comments

Comments
 (0)