Skip to content

Commit fc875cf

Browse files
committed
Adding ne setup.py
1 parent 50a1bdc commit fc875cf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@
3030
# Define default dependencies (compatible with older Python versions)
3131
install_requires = list_req
3232

33-
if python_version >= (3, 11):
33+
if python_version < (3, 10):
3434
install_requires = list_req + [
3535
"numpy<1.25.0",
3636
"hvplot~=0.7.3", # Older compatible version
3737
"holoviews~=1.14.9", # Older compatible version
38+
"panel~=0.14.4",
3839
]
3940

4041
# For Python versions >= 3.10 and < 3.11, update the dependency list
@@ -46,6 +47,7 @@
4647
"hvplot>=0.9.2", ###newer hvplot
4748
"holoviews>=1.16.0", # Update based on the bug fix relevant to Python 3.10
4849
# Ensure other dependencies are compatible
50+
"panel>=1.4.0",
4951
]
5052

5153
# For Python versions >= 3.11, ensure HoloViews is at least 1.15.3 for the bug fix
@@ -56,6 +58,7 @@
5658
"hvplot>=0.9.2", ###newer hvplot
5759
"holoviews>=1.15.3", # Ensure version is >= 1.15.3 for Python 3.11 support
5860
# Update or keep other dependencies as needed
61+
"panel>=1.4.0",
5962
]
6063

6164
setuptools.setup(

0 commit comments

Comments
 (0)