mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Restrict NumPy and Pandas versions (#539)
Shap is incompatible with NumPy 1.24 due to a deprecated usage becoming an error. There is no fix in Shap yet so an earlier version of NumPy must be used. Pandas 2.0 was recently released we will continue to use the latest 1.5 release to avoid any incompatibilities.
This commit is contained in:
parent
f7ea3bd476
commit
b507bb6d6c
@ -2,9 +2,9 @@
|
||||
# Basic requirements
|
||||
#
|
||||
elasticsearch>=8.3,<9
|
||||
pandas>=1.5
|
||||
pandas>=1.5,<2
|
||||
matplotlib>=3.6
|
||||
numpy<2
|
||||
numpy<1.24
|
||||
tqdm<5
|
||||
|
||||
#
|
||||
|
@ -2,6 +2,6 @@
|
||||
# Basic requirements
|
||||
#
|
||||
elasticsearch>=8.3,<9
|
||||
pandas>=1.5
|
||||
pandas>=1.5,<2
|
||||
matplotlib>=3.6
|
||||
numpy<2
|
||||
|
Loading…
x
Reference in New Issue
Block a user