Skip to content

Commit

Permalink
Merge pull request #1729 from ocefpaf/drop_py35_and_36
Browse files Browse the repository at this point in the history
Drop py35 and 36
  • Loading branch information
ocefpaf authored Nov 6, 2023
2 parents 944b9b1 + 4431abb commit ee8da7b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ def walk_subpkg(name):
url="https:/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",
Expand All @@ -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,
Expand Down

0 comments on commit ee8da7b

Please sign in to comment.