10000 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: Install test_requirements during the container build stage
  • Loading branch information
BvB93 authored and charris committed Jun 3, 2022
commit 82a8ac3ebe4b5636dda06141eff88f59873503ca
3 changes: 2 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,12 +276,13 @@ jobs:
git config --global --add safe.directory /numpy
cd /numpy &&
python3 setup.py install
python3 pip3 install -r ./test_requirements.txt
"
docker commit the_build the_build
- name: Run SIMD Tests
run: |
docker run --rm --interactive -v $(pwd):/numpy the_build /bin/bash -c "
cd /numpy && python3 pip3 install -r ./test_requirements.txt && python3 runtests.py -n -v -- -k test_simd
cd /numpy && python3 runtests.py -n -v -- -k test_simd
"

sde_simd_avx512_test:
Expand Down
0