8000 MAINT: Adapt npt._GenericAlias to Python 3.11 types.GenericAlias changes by charris · Pull Request #21660 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

MAINT: Adapt npt._GenericAlias to Python 3.11 types.GenericAlias changes #21660

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 3, 2022
Prev Previous commit
Next Next commit
TST: Move typing_extensions installation to the container-creation …
…step
  • Loading branch information
BvB93 authored and charris committed Jun 3, 2022
commit f1c6ffba73c212bf33baade066cde6488ed260d3
3 changes: 1 addition & 2 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:
docker run --name the_container --interactive -v /:/host arm32v7/ubuntu:focal /bin/bash -c "
apt update &&
apt install -y git python3 python3-dev python3-pip &&
pip3 install cython==0.29.30 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 &&
pip3 install cython==0.29.30 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 'typing_extensions>=4.2.0' &&
ln -s /host/lib64 /lib64 &&
ln -s /host/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu &&
ln -s /host/usr/arm-linux-gnueabihf /usr/arm-linux-gnueabihf &&
Expand All @@ -276,7 +276,6 @@ jobs:
git config --global --add safe.directory /numpy
cd /numpy &&
python3 setup.py install
python3 pip install -r ./test_requirements.txt
"
docker commit the_build the_build
- name: Run SIMD Tests
Expand Down
0