|
29 | 29 |
|
30 | 30 | if python_version <= (3, 10):
|
31 | 31 | install_requires = list_req + [
|
32 |
| - "numpy<1.24", # older version. otherwise get numpy bool error |
| 32 | + "numpy<1.24", # older version. otherwise you get numpy bool error |
33 | 33 | "hvplot~=0.7.3", # Older compatible version
|
34 | 34 | "holoviews<=1.14.9", # Older compatible version
|
35 | 35 | "panel~=0.14.4", ## this is an old versjon of panel
|
|
41 | 41 | if (3, 10) < python_version <= (3, 11):
|
42 | 42 | install_requires = list_req + [
|
43 | 43 | # Keep most dependencies as is, adjust only where necessary
|
44 |
| - "numpy>=1.25.0", # Update as needed for compatibility with newer HoloViews |
| 44 | + "numpy>=1.24.0", # Update as needed for compatibility with newer HoloViews |
45 | 45 | # Update other dependencies as needed
|
46 | 46 | "hvplot>=0.9.2", ###newer hvplot
|
47 |
| - "holoviews>=1.15.3", # Update based on the bug fix relevant to Python 3.10 |
| 47 | + "holoviews>=1.16.0", # Update based on the bug fix relevant to Python 3.10 |
48 | 48 | # Ensure other dependencies are compatible
|
49 | 49 | "panel>=1.4.0", ## this is a new version of panel
|
50 | 50 | "pandas>=2.0", ## pandas must be below 2.0 version
|
|
0 commit comments