From c10f5773638961dbc803ba90c7047d4b2f8a1cb5 Mon Sep 17 00:00:00 2001 From: Eva Maxfield Brown Date: Wed, 26 Jun 2024 10:32:26 -0400 Subject: [PATCH 1/3] Remove dask upper bound --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ad427e3..3f5c5b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dynamic = ["version"] dependencies = [ "bioio-base>=0.3.0", "bioformats_jar", - "dask[array]>=2021.4.1,<=2023.5.0", + "dask[array]>=2021.4.1", "fsspec>=2022.8.0", "numpy>=1.21", "ome-types>=0.3.4", From 4d41fbac4b56178f8eea2e63c8e12e97a716d72d Mon Sep 17 00:00:00 2001 From: Eva Maxfield Brown Date: Wed, 26 Jun 2024 10:34:52 -0400 Subject: [PATCH 2/3] Use uv for installing deps --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60bd5ec..0efa0c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,8 @@ jobs: - name: Install Dependencies run: | python -m pip install --upgrade pip - pip install .[test] + pip install uv + uv pip install .[test] - uses: actions/cache@v3 id: cache with: From 39a57f4ea0d3aeb53c9741bb9d0219daacaba3a1 Mon Sep 17 00:00:00 2001 From: Eva Maxfield Brown Date: Wed, 26 Jun 2024 10:40:12 -0400 Subject: [PATCH 3/3] Try uv system flag --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0efa0c3..3f77e3a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: run: | python -m pip install --upgrade pip pip install uv - uv pip install .[test] + uv pip install --system .[test] - uses: actions/cache@v3 id: cache with: