Spaces:
Runtime error
Runtime error
Commit
•
088a646
1
Parent(s):
b3237c9
Numpy version must be 1.22 or less
Browse filesHey
@Yuliang
you seem to have pushed a different requirement for `numpy>=1.22` which installs version `1.23.1` not supported by Numba and apparently neither by scipy
`
UserWarning: A NumPy version >=1.16.5 and <1.23.0 is required for this version of SciPy (detected version 1.23.1)
`
`
ImportError: Numba needs NumPy 1.22 or less
`
- requirements.txt +1 -1
requirements.txt
CHANGED
@@ -7,7 +7,7 @@ yacs>=0.1.8
|
|
7 |
scikit-image==0.19.1
|
8 |
termcolor
|
9 |
tqdm
|
10 |
-
numpy
|
11 |
trimesh==3.9.35
|
12 |
flatten_dict==0.4.2
|
13 |
jpeg4py
|
|
|
7 |
scikit-image==0.19.1
|
8 |
termcolor
|
9 |
tqdm
|
10 |
+
numpy==1.22.2
|
11 |
trimesh==3.9.35
|
12 |
flatten_dict==0.4.2
|
13 |
jpeg4py
|