Skip to content

Commit ee8da7b

Browse files
authored
Merge pull request #1729 from ocefpaf/drop_py35_and_36
Drop py35 and 36
2 parents 944b9b1 + 4431abb commit ee8da7b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,11 @@ def walk_subpkg(name):
5252
url="https://github.com/python-visualization/folium",
5353
keywords="data visualization",
5454
classifiers=[
55-
"Programming Language :: Python :: 3.5",
56-
"Programming Language :: Python :: 3.6",
5755
"Programming Language :: Python :: 3.7",
56+
"Programming Language :: Python :: 3.8",
57+
"Programming Language :: Python :: 3.9",
58+
"Programming Language :: Python :: 3.10",
59+
"Programming Language :: Python :: 3.11",
5860
"Topic :: Scientific/Engineering :: GIS",
5961
"Topic :: Scientific/Engineering :: Visualization",
6062
"License :: OSI Approved :: MIT License",
@@ -63,7 +65,7 @@ def walk_subpkg(name):
6365
platforms="any",
6466
packages=packages,
6567
package_data=package_data,
66-
python_requires=">=3.5",
68+
python_requires=">=3.7",
6769
extras_require={"testing": ["pytest"]},
6870
install_requires=install_requires,
6971
zip_safe=False,

0 commit comments

Comments
 (0)