We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0815f12 commit f91789aCopy full SHA for f91789a
2 files changed
.github/workflows/regtest.yml
@@ -44,5 +44,8 @@ jobs:
44
run: pip install .
45
46
- name: Run tests via test.py
47
- run: ./pyro/test.py --nproc 0
+ run: |
48
+ # Numpy 1.24 gets slightly diff answers: https://github.com/numpy/numpy/issues/23289
49
+ export NPY_DISABLE_CPU_FEATURES="AVX512_SKX"
50
+ ./pyro/test.py --nproc 0
51
requirements.txt
@@ -1,4 +1,4 @@
1
-numpy>=1.13.3,<1.24
+numpy>=1.13.3
2
matplotlib>=2.0.0
3
h5py>=2.7
4
scipy>=0.16
0 commit comments