Skip to content

Commit a572a93

Browse files
committed
New version 0.1.901 fixes issues
1 parent e6c8cc3 commit a572a93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
if python_version <= (3, 10):
3131
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
3333
"hvplot~=0.7.3", # Older compatible version
3434
"holoviews<=1.14.9", # Older compatible version
3535
"panel~=0.14.4", ## this is an old versjon of panel
@@ -41,10 +41,10 @@
4141
if (3, 10) < python_version <= (3, 11):
4242
install_requires = list_req + [
4343
# 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
4545
# Update other dependencies as needed
4646
"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
4848
# Ensure other dependencies are compatible
4949
"panel>=1.4.0", ## this is a new version of panel
5050
"pandas>=2.0", ## pandas must be below 2.0 version

0 commit comments

Comments
 (0)