Skip to content

Commit 58fecc3

Browse files
authored
fix: Support for Python 3.8 was removed (#1180)
1 parent 29e0394 commit 58fecc3

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

python/ipyleaflet/pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ classifiers = [
2222
"Intended Audience :: Science/Research",
2323
"Topic :: Multimedia :: Graphics",
2424
"License :: OSI Approved :: MIT License",
25+
"Programming Language :: Python :: 3.8",
26+
"Programming Language :: Python :: 3.9",
2527
"Programming Language :: Python :: 3.10",
2628
"Programming Language :: Python :: 3.11",
2729
"Programming Language :: Python :: 3.12",
2830
]
29-
requires-python = ">=3.10"
31+
requires-python = ">=3.8"
3032
dependencies = [
3133
"ipyleaflet_core",
3234
"jupyter_leaflet",

python/ipyleaflet_core/pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ classifiers = [
2222
"Intended Audience :: Science/Research",
2323
"Topic :: Multimedia :: Graphics",
2424
"License :: OSI Approved :: MIT License",
25+
"Programming Language :: Python :: 3.8",
26+
"Programming Language :: Python :: 3.9",
2527
"Programming Language :: Python :: 3.10",
2628
"Programming Language :: Python :: 3.11",
2729
"Programming Language :: Python :: 3.12",
2830
]
29-
requires-python = ">=3.10"
31+
requires-python = ">=3.8"
3032
dependencies = [
3133
"ipywidgets>=7.6.0,<9",
3234
"traittypes>=0.2.1,<3",

python/jupyter_leaflet/pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ classifiers = [
2222
"Intended Audience :: Science/Research",
2323
"Topic :: Multimedia :: Graphics",
2424
"License :: OSI Approved :: MIT License",
25+
"Programming Language :: Python :: 3.8",
26+
"Programming Language :: Python :: 3.9",
2527
"Programming Language :: Python :: 3.10",
2628
"Programming Language :: Python :: 3.11",
2729
"Programming Language :: Python :: 3.12",
2830
]
29-
requires-python = ">=3.10"
31+
requires-python = ">=3.8"
3032

3133
[project.urls]
3234
Homepage = "https://github.com/jupyter-widgets/ipyleaflet"

0 commit comments

Comments
 (0)