From 4431abb1adcf30c1d9c6d82dd0c9a3a3ff6e3077 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Fri, 17 Feb 2023 10:43:50 -0300 Subject: [PATCH] min supported python=3.7 --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 3da0fb66c..a3a5aaf6f 100644 --- a/setup.py +++ b/setup.py @@ -52,9 +52,11 @@ def walk_subpkg(name): url="https://github.com/python-visualization/folium", keywords="data visualization", classifiers=[ - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Scientific/Engineering :: GIS", "Topic :: Scientific/Engineering :: Visualization", "License :: OSI Approved :: MIT License", @@ -63,7 +65,7 @@ def walk_subpkg(name): platforms="any", packages=packages, package_data=package_data, - python_requires=">=3.5", + python_requires=">=3.7", extras_require={"testing": ["pytest"]}, install_requires=install_requires, zip_safe=False,