Skip to content

Commit 1a4bdec

Browse files
committed
Reverting 3.9- will remove later once EOL in October
1 parent 5532ed6 commit 1a4bdec

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
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.10", "3.11", "3.12", "3.13" ]
18+
python-version: ["3.9","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 and 3.9
4+
- Deprecated support for Python 3.8
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.10
22+
- python >=3.9
2323
run:
2424
- geojson ~=3.2.0
2525
- python >=3.10

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ geojson~=3.2.0
22
typeguard~=4.4.4
33
shapely~=2.1.1
44
tqdm~=4.67.1
5-
setuptools>=80.9.0
65
requests~=2.32.4
76
urllib3>=2.5.0 # not directly required, pinned by Snyk to avoid a vulnerability
87
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,6 +7,7 @@ classifiers =
77
Natural Language :: English
88
Intended Audience :: Developers
99
Intended Audience :: Science/Research
10+
Programming Language :: Python :: 3.9
1011
Programming Language :: Python :: 3.10
1112
Programming Language :: Python :: 3.11
1213
Programming Language :: Python :: 3.12
@@ -37,7 +38,6 @@ install_requires =
3738
typeguard~=4.4.4
3839
shapely~=2.1.1
3940
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.10, python3.11, python3.12, python3.13
3+
envlist = python3.9, 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)