BSDevo
November 5, 2023, 6:44pm
1
Im looking for Streamlit dependence list.
Im trying to solve an issue which was not there last night only occurred after my OS update ( this is what im thinking of as no other things left to check )
Thank You.
Goyo
November 6, 2023, 8:19am
2
Is this what you are looking for?
VERSION = "1.28.1" # PEP-440
NAME = "streamlit"
# IMPORTANT: We should try very hard *not* to add dependencies to Streamlit.
# And if you do add one, make the required version as general as possible:
# - Include relevant lower bound for any features we use from our dependencies
# - Always include the lower bound as >= VERSION, to keep testing min versions easy
# - And include an upper bound that's < NEXT_MAJOR_VERSION
INSTALL_REQUIRES = [
"altair>=4.0, <6",
"blinker>=1.0.0, <2",
"cachetools>=4.0, <6",
"click>=7.0, <9",
# 1.4 introduced the functionality found in python 3.8's importlib.metadata module
"importlib-metadata>=1.4, <7",
"numpy>=1.19.3, <2",
"packaging>=16.8, <24",
# Lowest version with available wheel for 3.7 + amd64 + linux
"pandas>=1.3.0, <3",
1 Like
system
Closed
November 8, 2023, 5:05pm
4
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.