summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBas van Beek <43369155+BvB93@users.noreply.github.com>2022-05-26 20:47:39 +0200
committerBas van Beek <43369155+BvB93@users.noreply.github.com>2022-05-26 20:47:39 +0200
commit7929d7074a5e8c2d344f5423850c1fd497116931 (patch)
tree08abe0afaa422fd180959f6a1c49a012e77749ff /.github
parentd7e1cef3e586c83ff047f9c64e3809d911b0483c (diff)
downloadnumpy-7929d7074a5e8c2d344f5423850c1fd497116931.tar.gz
TST: Move `typing_extensions` installation to the container-creation step
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_test.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml
index cb36375ae..c8d260b00 100644
--- a/.github/workflows/build_test.yml
+++ b/.github/workflows/build_test.yml
@@ -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 &&
@@ -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