bugfix requirement error

error was

```
idhub-1  | ValueError: numpy.dtype size changed, may indicate binary incompatibility. Expected 96 from C header, got 88 from PyObject
idhub-1 exited with code 1
```

> The solution is to pin down the numpy version to any before the 2.0.0

related https://stackoverflow.com/questions/78634235/numpy-dtype-size-changed-may-indicate-binary-incompatibility-expected-96-from
This commit is contained in:
pedro 2025-01-08 22:35:05 +01:00
parent d9a0de1c68
commit 6e4f3d7be3

View file

@ -6,6 +6,7 @@ black==23.9.1
python-decouple==3.8
jsonschema[format]==4.19.1
pandas==2.1.1
numpy>=1.21,<2.0
xlrd==2.0.1
odfpy==1.4.1
requests==2.31.0