Skip to content

Commit e9f2ca3

Browse files
remove python 3.9 and 3.10 support (#825)
1 parent 2bb09b3 commit e9f2ca3

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,12 @@ jobs:
1717
strategy:
1818
matrix:
1919
python-version:
20-
- '3.9'
21-
- '3.10'
2220
- '3.11'
2321
- '3.12'
2422
- '3.13'
2523

2624
steps:
27-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2826
- name: Set up Python ${{ matrix.python-version }}
2927
uses: actions/setup-python@v5
3028
with:
@@ -57,7 +55,7 @@ jobs:
5755
needs: [tests]
5856
runs-on: ubuntu-latest
5957
steps:
60-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
6159
- name: Set up Python
6260
uses: actions/setup-python@v5
6361
with:
@@ -91,9 +89,9 @@ jobs:
9189
needs: [tests]
9290
runs-on: ubuntu-latest
9391
steps:
94-
- uses: actions/checkout@v3
92+
- uses: actions/checkout@v5
9593
- name: Set up Python
96-
uses: actions/setup-python@v4
94+
uses: actions/setup-python@v5
9795
with:
9896
python-version: '3.13'
9997

@@ -110,7 +108,7 @@ jobs:
110108
runs-on: ubuntu-latest
111109
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
112110
steps:
113-
- uses: actions/checkout@v4
111+
- uses: actions/checkout@v5
114112
- name: Set up Python
115113
uses: actions/setup-python@v5
116114
with:

.github/workflows/deploy_mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout main
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Set up Python 3.12
2424
uses: actions/setup-python@v5

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
# 8.0.0
55

6+
* remove python 3.9 and 3.10 support **breaking change**
7+
68
* add **band_descriptions** in ImageData and PointData objects
79

810
```python

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rio-tiler"
33
description = "User friendly Rasterio plugin to read raster datasets."
44
readme = "README.md"
5-
requires-python = ">=3.9"
5+
requires-python = ">=3.11"
66
license = {file = "LICENSE"}
77
authors = [
88
{name = "Vincent Sarago", email = "vincent@developmentseed.com"},
@@ -12,8 +12,6 @@ classifiers = [
1212
"Intended Audience :: Information Technology",
1313
"Intended Audience :: Science/Research",
1414
"License :: OSI Approved :: BSD License",
15-
"Programming Language :: Python :: 3.9",
16-
"Programming Language :: Python :: 3.10",
1715
"Programming Language :: Python :: 3.11",
1816
"Programming Language :: Python :: 3.12",
1917
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)