Skip to content

Commit d102331

Browse files
committed
Revert "Reverting 3.9- will remove later once EOL in October"
This reverts commit 1a4bdec.
1 parent aa4997d commit d102331

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9","3.10", "3.11", "3.12", "3.13" ]
18+
python-version: ["3.10", "3.11", "3.12", "3.13" ]
1919

2020
env:
2121
## Environment variable

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22

33
## [1.3.2] - 2025/07/30
4-
- Deprecated support for Python 3.8
4+
- Deprecated support for Python 3.8 and 3.9
55
- Updating dependencies to latest versions
66

77
## [1.3.1] - 2025/06/10

recipes/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build:
1919
requirements:
2020
host:
2121
- pip
22-
- python >=3.9
22+
- python >=3.10
2323
run:
2424
- geojson ~=3.2.0
2525
- python >=3.10

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ geojson~=3.2.0
22
typeguard~=4.4.4
33
shapely~=2.1.1
44
tqdm~=4.67.1
5+
setuptools>=80.9.0
56
requests~=2.32.4
67
urllib3>=2.5.0 # not directly required, pinned by Snyk to avoid a vulnerability
78
zipp>=3.23.0 # not directly required, pinned by Snyk to avoid a vulnerability

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ classifiers =
77
Natural Language :: English
88
Intended Audience :: Developers
99
Intended Audience :: Science/Research
10-
Programming Language :: Python :: 3.9
1110
Programming Language :: Python :: 3.10
1211
Programming Language :: Python :: 3.11
1312
Programming Language :: Python :: 3.12
@@ -38,6 +37,7 @@ install_requires =
3837
typeguard~=4.4.4
3938
shapely~=2.1.1
4039
tqdm~=4.67.1
40+
setuptools>=80.9.0
4141
urllib3>=2.5.0
4242
zipp>=3.23.0
4343
python_requires = >=3.10

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# content of: tox.ini , put in same dir as setup.py
22
[tox]
3-
envlist = python3.9, python3.10, python3.11, python3.12, python3.13
3+
envlist = python3.10, python3.11, python3.12, python3.13
44

55
[testenv]
66
# install pytest in the virtualenv where commands will be executed

0 commit comments

Comments
 (0)