Skip to content

Commit eaf3520

Browse files
Merge pull request #176 from developmentseed/feature/add-python3.14
add python 3.14
2 parents 0218167 + 091057f commit eaf3520

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- '*'
99
pull_request:
1010
env:
11-
LATEST_PY_VERSION: '3.13'
11+
LATEST_PY_VERSION: '3.14'
1212

1313
jobs:
1414
tests:
@@ -21,12 +21,12 @@ jobs:
2121
- '3.11'
2222
- '3.12'
2323
- '3.13'
24-
# - '3.14.0-alpha.2', waiting for shapely to support 3.14
24+
- '3.14'
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

@@ -58,9 +58,9 @@ jobs:
5858
runs-on: ubuntu-latest
5959
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262
- name: Set up Python
63-
uses: actions/setup-python@v5
63+
uses: actions/setup-python@v6
6464
with:
6565
python-version: ${{ env.LATEST_PY_VERSION }}
6666

.github/workflows/deploy_mkdocs.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout main
20-
uses: actions/checkout@v2
21-
22-
- name: Set up Python 3.9
23-
uses: actions/setup-python@v2
20+
uses: actions/checkout@v5
21+
- name: Set up Python 3.13
22+
uses: actions/setup-python@v6
2423
with:
25-
python-version: 3.9
24+
python-version: 3.13
2625

2726
- name: Install dependencies
2827
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
"Topic :: Scientific/Engineering :: GIS",
2122
"Typing :: Typed",
2223
]

0 commit comments

Comments
 (0)