We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 007fa8c commit ca4ce8fCopy full SHA for ca4ce8f
3 files changed
.github/workflows/test_code.yml
@@ -12,7 +12,7 @@ jobs:
12
strategy:
13
matrix:
14
os: [ubuntu-latest, windows-latest]
15
- python-version: ["3.8", "3.11"]
+ python-version: ["3.8", "3.12"]
16
fail-fast: false
17
18
steps:
.github/workflows/test_selenium.yml
@@ -9,6 +9,10 @@ on:
9
jobs:
10
run:
11
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: [ "3.8", "3.12" ]
+ fail-fast: false
- uses: actions/checkout@v4
setup.py
@@ -52,11 +52,11 @@ def walk_subpkg(name):
52
url="https://github.com/python-visualization/folium",
53
keywords="data visualization",
54
classifiers=[
55
- "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",
+ "Programming Language :: Python :: 3.12",
60
"Topic :: Scientific/Engineering :: GIS",
61
"Topic :: Scientific/Engineering :: Visualization",
62
"License :: OSI Approved :: MIT License",
@@ -65,7 +65,7 @@ def walk_subpkg(name):
65
platforms="any",
66
packages=packages,
67
package_data=package_data,
68
- python_requires=">=3.7",
+ python_requires=">=3.8",
69
extras_require={"testing": ["pytest"]},
70
install_requires=install_requires,
71
zip_safe=False,
0 commit comments