From bf043b5837ffadbe8c5653a396a1f9136d456be2 Mon Sep 17 00:00:00 2001 From: Randy Zwitch Date: Mon, 30 Sep 2024 10:36:18 -0400 Subject: [PATCH] Update setup.py (#226) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index cbfede3..8ad664f 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setuptools.setup( name="streamlit_folium", - version="0.22.1", + version="0.23.0", author="Randy Zwitch", author_email="rzwitch@gmail.com", description="Render Folium objects in Streamlit", @@ -12,6 +12,6 @@ packages=setuptools.find_packages(), include_package_data=True, classifiers=[], - python_requires=">=3.8", + python_requires=">=3.9", install_requires=["streamlit>=1.13.0", "folium>=0.13,!=0.15.0", "jinja2", "branca"], )