Skip to content

Commit d72d5b6

Browse files
committed
Xarray constraint Python >= 3.10
1 parent 7dc1b99 commit d72d5b6

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/full_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest, windows-latest]
18-
python-version: ["3.9", "3.13"]
18+
python-version: ["3.10", "3.13"]
1919

2020
steps:
2121
- uses: actions/checkout@v3

.github/workflows/notebooks_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: '3.9'
19+
python-version: '3.13'
2020
- name: Install modelskill
2121
run: |
2222
pip install .[test,notebooks]

.github/workflows/scheduled_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest, windows-latest]
17-
python-version: [3.9, "3.13"]
17+
python-version: [3.10, "3.13"]
1818

1919
steps:
2020
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies = [
1313
"pandas >= 1.4",
1414
"mikeio >= 1.2",
1515
"matplotlib",
16-
"xarray",
16+
"xarray>=2024.10.0",
1717
"scipy",
1818
"jinja2",
1919
]
@@ -25,14 +25,13 @@ authors = [
2525
description="Compare results from simulations with observations."
2626
license="MIT"
2727
readme = "README.md"
28-
requires-python = ">=3.9"
28+
requires-python = ">=3.10"
2929
classifiers = [
3030
"License :: OSI Approved :: MIT License",
3131
"Development Status :: 5 - Production/Stable",
3232
"Intended Audience :: Science/Research",
3333
"Programming Language :: Python",
3434
"Programming Language :: Python :: 3",
35-
"Programming Language :: Python :: 3.9",
3635
"Programming Language :: Python :: 3.10",
3736
"Programming Language :: Python :: 3.11",
3837
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)