From 1a285af99eb57cca911e73514716e9c7bd8e57d6 Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Mon, 19 Aug 2024 13:35:44 -0400 Subject: [PATCH 1/3] Fix setuptools --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 420f596..8cbf06c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ dependencies = [ "ruamel.yaml", "xarray", "zarr", + "setuptools", ] [project.optional-dependencies] From 9e27dafaa487397e77807b4267ea783add0acc3e Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Mon, 19 Aug 2024 13:54:25 -0400 Subject: [PATCH 2/3] add 3.12 to CI --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 54b3941..efd8f89 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest"] - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} steps: - name: 🫙 Checkout code From 28b579e7a6755fb8dfe6c86ed98a8bab5b79b8f1 Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Mon, 19 Aug 2024 13:58:32 -0400 Subject: [PATCH 3/3] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index efd8f89..0fc440d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,7 +32,7 @@ jobs: fetch-depth: 0 # checkout tags (which is not done by default) - name: 🔁 Setup Python id: setup-python - uses: actions/setup-python@v5 + uses: actions/setup-python@v5.1.1 with: python-version: ${{ matrix.python-version }} cache: pip