From b61f67b6d054986f1c09ae1933a22646720819fa Mon Sep 17 00:00:00 2001 From: Luke Hoggatt <37279082+hoggatt@users.noreply.github.com> Date: Fri, 2 Aug 2024 11:55:47 -0500 Subject: [PATCH] bump minimum streamlit version to support st.rerun() --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 31ed3e4..2ecb426 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="st-combobox", - version="1.1.1", + version="1.2.0", author="hoggatt", description="Streamlit AutoComplete ComboBox", long_description=long_description, @@ -20,7 +20,7 @@ }, python_requires=">=3.7", install_requires=[ - "streamlit >= 1.0", + "streamlit >= 1.27.0", ], extras_require={ "tests": ["wikipedia"],