@@ -13,6 +13,8 @@ concurrency:
13
13
group : test-${{ github.ref }}
14
14
cancel-in-progress : true
15
15
16
+ env : PIP_ONLY_BINARY=numpy
17
+
16
18
jobs :
17
19
# This is the "main" test suite, which tests a large number of different
18
20
# versions of default compilers and Python versions in GitHub Actions.
29
31
- ' 3.10'
30
32
# - '3.11-dev'
31
33
- ' pypy-3.7-v7.3.5'
32
- - ' pypy-3.8'
34
+ # - 'pypy-3.8'
33
35
34
36
# Items in here will either be added to the build matrix (if not
35
37
# present), or add new keys to an existing matrix element if all the
85
87
86
88
- name : Prepare env
87
89
run : |
88
- python -m pip install -r tests/requirements.txt --only-binary=:all:
90
+ python -m pip install -r tests/requirements.txt
89
91
90
92
- name : Setup annotations on Linux
91
93
if : runner.os == 'Linux'
@@ -238,7 +240,7 @@ jobs:
238
240
239
241
- name : Prepare env
240
242
run : |
241
- python -m pip install -r tests/requirements.txt --only-binary=:all:
243
+ python -m pip install -r tests/requirements.txt
242
244
243
245
- name : Configure
244
246
run : >
@@ -515,7 +517,7 @@ jobs:
515
517
- name : Install dependencies
516
518
run : |
517
519
set +e; source /opt/intel/oneapi/setvars.sh; set -e
518
- python3 -m pip install -r tests/requirements.txt --only-binary=:all:
520
+ python3 -m pip install -r tests/requirements.txt
519
521
520
522
- name : Configure C++11
521
523
run : |
@@ -607,7 +609,7 @@ jobs:
607
609
608
610
- name : Install dependencies
609
611
run : |
610
- python3 -m pip install cmake -r tests/requirements.txt --only-binary=:all:
612
+ python3 -m pip install cmake -r tests/requirements.txt
611
613
612
614
- name : VAR_BUILD_TYPE 7
613
615
if : matrix.centos == 7
@@ -764,7 +766,7 @@ jobs:
764
766
765
767
- name : Prepare env
766
768
run : |
767
- python -m pip install -r tests/requirements.txt --only-binary=:all:
769
+ python -m pip install -r tests/requirements.txt
768
770
769
771
# First build - C++11 mode and inplace
770
772
- name : Configure ${{ matrix.args }}
@@ -811,7 +813,7 @@ jobs:
811
813
812
814
- name : Prepare env
813
815
run : |
814
- python -m pip install -r tests/requirements.txt --only-binary=:all:
816
+ python -m pip install -r tests/requirements.txt
815
817
816
818
# First build - C++11 mode and inplace
817
819
- name : Configure
@@ -861,7 +863,7 @@ jobs:
861
863
862
864
- name : Prepare env
863
865
run : |
864
- python -m pip install -r tests/requirements.txt --only-binary=:all:
866
+ python -m pip install -r tests/requirements.txt
865
867
866
868
# First build - C++11 mode and inplace
867
869
- name : Configure
0 commit comments