Skip to content

Commit d6242e1

Browse files
authored
align/concat/combine_nested implementation (#18)
1 parent 0cb30f4 commit d6242e1

File tree

6 files changed

+864
-11
lines changed

6 files changed

+864
-11
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/setup-python@v5.2.0
1919
name: Install Python
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.12"
2222

2323
- name: Install PyBuild
2424
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
python-version: ["3.10", "3.13"]
23+
python-version: ["3.11", "3.13"]
2424
os: ["ubuntu-latest"]
2525
runs-on: ${{ matrix.os }}
2626

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ name = "rasterix"
1414
description = "Raster extensions for Xarray"
1515
license = "Apache-2.0"
1616
readme = "README.md"
17-
requires-python = ">=3.10"
17+
requires-python = ">=3.11"
1818
keywords = ["xarray"]
1919
classifiers = [
2020
"Development Status :: 4 - Beta",
2121
"Natural Language :: English",
2222
"Operating System :: OS Independent",
2323
"Programming Language :: Python",
24-
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",
2625
"Programming Language :: Python :: 3.12",
2726
"Programming Language :: Python :: 3.13",
@@ -93,7 +92,7 @@ dependencies = [
9392
features = ["test"]
9493

9594
[[tool.hatch.envs.test.matrix]]
96-
python = ["3.10", "3.13"]
95+
python = ["3.11", "3.13"]
9796

9897
[tool.hatch.envs.test.scripts]
9998
run-coverage = "pytest -nauto --cov-config=pyproject.toml --cov=pkg --cov-report xml --cov=src --junitxml=junit.xml -o junit_family=legacy"

0 commit comments

Comments
 (0)