File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 30
30
# Define default dependencies (compatible with older Python versions)
31
31
install_requires = list_req
32
32
33
- if python_version >= (3 , 11 ):
33
+ if python_version < (3 , 10 ):
34
34
install_requires = list_req + [
35
35
"numpy<1.25.0" ,
36
36
"hvplot~=0.7.3" , # Older compatible version
37
37
"holoviews~=1.14.9" , # Older compatible version
38
+ "panel~=0.14.4" ,
38
39
]
39
40
40
41
# For Python versions >= 3.10 and < 3.11, update the dependency list
46
47
"hvplot>=0.9.2" , ###newer hvplot
47
48
"holoviews>=1.16.0" , # Update based on the bug fix relevant to Python 3.10
48
49
# Ensure other dependencies are compatible
50
+ "panel>=1.4.0" ,
49
51
]
50
52
51
53
# For Python versions >= 3.11, ensure HoloViews is at least 1.15.3 for the bug fix
56
58
"hvplot>=0.9.2" , ###newer hvplot
57
59
"holoviews>=1.15.3" , # Ensure version is >= 1.15.3 for Python 3.11 support
58
60
# Update or keep other dependencies as needed
61
+ "panel>=1.4.0" ,
59
62
]
60
63
61
64
setuptools .setup (
You can’t perform that action at this time.
0 commit comments