From 0f32877d45baa0ad383b3df2c2929c32b5e945c6 Mon Sep 17 00:00:00 2001 From: Oliver Watt-Meyer Date: Sat, 6 Jan 2024 10:37:21 -0800 Subject: [PATCH 1/5] Test more python and xarray versions --- .github/workflows/pytest.yaml | 2 +- tox.ini | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 465c897..10782d0 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8"] + python-version: ["3.8", "3.11"] steps: - uses: actions/checkout@v3 diff --git a/tox.ini b/tox.ini index 3ccf8a9..19cdbf1 100644 --- a/tox.ini +++ b/tox.ini @@ -17,5 +17,7 @@ deps = xarray21: xarray>=0.21.0,<0.22.0 xarray202203: xarray>=2022.03.0,<2022.04.0 xarray202206: xarray>=2022.06.0,<2022.07.0 + xarray202306: xarray>=2023.06.0,<2023.07.0 + xarray202312: xarray>=2023.12.0,<2024.01.0 commands = pytest From c07072144eeed514e5a77e7456445aaf144d1143 Mon Sep 17 00:00:00 2001 From: Oliver Watt-Meyer Date: Sat, 6 Jan 2024 10:57:08 -0800 Subject: [PATCH 2/5] Update tox envlist --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 19cdbf1..1326802 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py38-xarray{16,19,21,202203,202206} +envlist = py-xarray{16,19,21,202203,202206,202306,202312} [testenv] deps = From 2dd0153d87c114e33152839b5c62812fef759728 Mon Sep 17 00:00:00 2001 From: Oliver Watt-Meyer Date: Sat, 6 Jan 2024 11:01:02 -0800 Subject: [PATCH 3/5] Dont fail fast --- .github/workflows/pytest.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 10782d0..109e2e6 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -9,6 +9,7 @@ jobs: strategy: matrix: python-version: ["3.8", "3.11"] + fail-fast: false steps: - uses: actions/checkout@v3 From 6de058cdb906e2bbe458320f6a8f3a6d3b798c28 Mon Sep 17 00:00:00 2001 From: Oliver Watt-Meyer Date: Sat, 6 Jan 2024 11:05:29 -0800 Subject: [PATCH 4/5] Use py3.9 instead of py3.8 --- .github/workflows/pytest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 109e2e6..f2e4f0f 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.11"] + python-version: ["3.9", "3.11"] fail-fast: false steps: From ceccf96bb1d4cf6a3acba07ee4d5ed48c468aaa5 Mon Sep 17 00:00:00 2001 From: Oliver Watt-Meyer Date: Sat, 6 Jan 2024 11:12:07 -0800 Subject: [PATCH 5/5] Update python version listing --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2158297..856b588 100644 --- a/setup.py +++ b/setup.py @@ -30,8 +30,10 @@ "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], description="Describe zarr stores from the command line.", long_description=readme,