Skip to content

Commit fe5452d

Browse files
authored
Relax Python version to 3.10 (#16)
* relax python version * change gh actions python version
1 parent c7e9b58 commit fe5452d

File tree

4 files changed

+510
-13
lines changed

4 files changed

+510
-13
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: "3.12"
22+
python-version: "3.10"
2323

2424
- name: Install uv
2525
run: |

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: "3.12"
28+
python-version: "3.10"
2929

3030
- name: Install uv
3131
run: |

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ license = "MIT"
1010
classifiers = [
1111
"Development Status :: 3 - Alpha",
1212
"Programming Language :: Python :: 3",
13+
"Programming Language :: Python :: 3.10",
14+
"Programming Language :: Python :: 3.11",
1315
"Programming Language :: Python :: 3.12",
1416
"Programming Language :: Python :: 3.13",
1517
"Programming Language :: Python :: 3.14",
1618
]
17-
requires-python = ">=3.12"
19+
requires-python = ">=3.10"
1820
dependencies = [
1921
"basemap",
2022
"basemap-data-hires",

0 commit comments

Comments
 (0)