Skip to content

Commit ca4ce8f

Browse files
authored
Remove Python 3.7, add 3.12 (#1917)
1 parent 007fa8c commit ca4ce8f

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/test_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
python-version: ["3.8", "3.11"]
15+
python-version: ["3.8", "3.12"]
1616
fail-fast: false
1717

1818
steps:

.github/workflows/test_selenium.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
jobs:
1010
run:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: [ "3.8", "3.12" ]
15+
fail-fast: false
1216

1317
steps:
1418
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +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.7",
5655
"Programming Language :: Python :: 3.8",
5756
"Programming Language :: Python :: 3.9",
5857
"Programming Language :: Python :: 3.10",
5958
"Programming Language :: Python :: 3.11",
59+
"Programming Language :: Python :: 3.12",
6060
"Topic :: Scientific/Engineering :: GIS",
6161
"Topic :: Scientific/Engineering :: Visualization",
6262
"License :: OSI Approved :: MIT License",
@@ -65,7 +65,7 @@ def walk_subpkg(name):
6565
platforms="any",
6666
packages=packages,
6767
package_data=package_data,
68-
python_requires=">=3.7",
68+
python_requires=">=3.8",
6969
extras_require={"testing": ["pytest"]},
7070
install_requires=install_requires,
7171
zip_safe=False,

0 commit comments

Comments
 (0)