Skip to content

Commit 021fceb

Browse files
committed
Update python versions
1 parent 53d4432 commit 021fceb

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/on-push.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
strategy:
150150
matrix:
151151
include:
152-
- python-version: '3.9'
152+
- python-version: '3.10'
153153
extra: -integration
154154

155155
steps:
@@ -191,7 +191,7 @@ jobs:
191191
- uses: actions/checkout@v4
192192
- uses: actions/setup-python@v5
193193
with:
194-
python-version: '3.11'
194+
python-version: '3.12'
195195
- name: Install package
196196
run: |
197197
python -m pip install --upgrade pip

pyproject.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ build-backend = "setuptools.build_meta"
33
requires = ["setuptools>=64", "setuptools_scm>=8"]
44

55
[project]
6-
authors = [{"name" = "B-Open", "email" = "[email protected]"}]
6+
authors = [{ "name" = "B-Open", "email" = "[email protected]" }]
77
classifiers = [
88
"Development Status :: 4 - Beta",
99
"Intended Audience :: Science/Research",
1010
"License :: OSI Approved :: Apache Software License",
1111
"Operating System :: OS Independent",
1212
"Programming Language :: Python",
1313
"Programming Language :: Python :: 3",
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
17-
"Topic :: Scientific/Engineering"
16+
"Programming Language :: Python :: 3.12",
17+
"Topic :: Scientific/Engineering",
1818
]
1919
dependencies = [
2020
"fsspec",
2121
"numpy",
2222
"pandas",
2323
"rioxarray",
2424
"xarray >= 0.18.0",
25-
"xmlschema"
25+
"xmlschema",
2626
]
2727
description = "Easily access and explore the SAR data products of the Copernicus Sentinel-1 satellite mission"
2828
dynamic = ["version"]
@@ -35,9 +35,9 @@ keywords = [
3535
"sentinel-1",
3636
"sar",
3737
"synthetic-aperture-radar",
38-
"xarray"
38+
"xarray",
3939
]
40-
license = {file = "LICENSE"}
40+
license = { file = "LICENSE" }
4141
name = "xarray-sentinel"
4242
readme = "README.md"
4343
requires-python = ">=3.9"
@@ -63,7 +63,7 @@ module = [
6363
"rasterio",
6464
"shapely",
6565
"shapely.geometry",
66-
"shapely.wkt"
66+
"shapely.wkt",
6767
]
6868

6969
[tool.ruff]
@@ -74,7 +74,7 @@ line-length = 88
7474
[tool.ruff.lint]
7575
ignore = [
7676
# pydocstyle: Missing Docstrings
77-
"D1"
77+
"D1",
7878
]
7979
select = [
8080
# pyflakes
@@ -85,7 +85,7 @@ select = [
8585
# isort
8686
"I",
8787
# pydocstyle
88-
"D"
88+
"D",
8989
]
9090

9191
[tool.ruff.lint.pycodestyle]

0 commit comments

Comments
 (0)