Skip to content

Commit

Permalink
Update python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamici committed Dec 27, 2024
1 parent 53d4432 commit 021fceb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
strategy:
matrix:
include:
- python-version: '3.9'
- python-version: '3.10'
extra: -integration

steps:
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install package
run: |
python -m pip install --upgrade pip
Expand Down
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]

[project]
authors = [{"name" = "B-Open", "email" = "[email protected]"}]
authors = [{ "name" = "B-Open", "email" = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering"
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"fsspec",
"numpy",
"pandas",
"rioxarray",
"xarray >= 0.18.0",
"xmlschema"
"xmlschema",
]
description = "Easily access and explore the SAR data products of the Copernicus Sentinel-1 satellite mission"
dynamic = ["version"]
Expand All @@ -35,9 +35,9 @@ keywords = [
"sentinel-1",
"sar",
"synthetic-aperture-radar",
"xarray"
"xarray",
]
license = {file = "LICENSE"}
license = { file = "LICENSE" }
name = "xarray-sentinel"
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -63,7 +63,7 @@ module = [
"rasterio",
"shapely",
"shapely.geometry",
"shapely.wkt"
"shapely.wkt",
]

[tool.ruff]
Expand All @@ -74,7 +74,7 @@ line-length = 88
[tool.ruff.lint]
ignore = [
# pydocstyle: Missing Docstrings
"D1"
"D1",
]
select = [
# pyflakes
Expand All @@ -85,7 +85,7 @@ select = [
# isort
"I",
# pydocstyle
"D"
"D",
]

[tool.ruff.lint.pycodestyle]
Expand Down

0 comments on commit 021fceb

Please sign in to comment.