Skip to content

Commit ab8a05a

Browse files
authored
Require Python 3.9 or higher (#743)
Python 3.8 reached end of life October 2024: https://endoflife.date/python It's impossible to lock pyproj for all versions 3.9-3.13. So let's split this into two PRs: one to remove 3.8 support and another to add tests for 3.12 and 3.13
1 parent 15943e4 commit ab8a05a

File tree

3 files changed

+15
-342
lines changed

3 files changed

+15
-342
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.8, 3.9, "3.10", "3.11"]
15+
python-version: [3.9, "3.10", "3.11"]
1616

1717
steps:
1818
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Fast, interactive geospatial data visualization in Jupyter."
55
authors = [{ name = "Kyle Barron", email = "[email protected]" }]
66
license = "MIT"
77
readme = "README.md"
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.9"
99
dependencies = [
1010
"anywidget~=0.9.0",
1111
# Version in Colab as of October 2024

0 commit comments

Comments
 (0)