From de7caac3d6070ec9ec0659fb9a9fa1bc257c40fc Mon Sep 17 00:00:00 2001 From: Ronald Pandolfi Date: Mon, 23 Jun 2025 12:26:45 -0700 Subject: [PATCH 1/2] update dep pins --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2c7f896..5863d15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,10 +6,10 @@ build-backend = "hatchling.build" name = "hgdl" dependencies = [ "wheel", - "scipy ~= 1.13.0", - "numpy ~= 2.1.1", - "dask ~= 2024.1.0", - "distributed ~= 2024.1.0", + "scipy ~= 1.16.0", + "numpy ~= 2.3.1", + "dask ~= 2025.5.1", + "distributed ~= 2025.5.1", "loguru", ] # imate From db7c4e2431d06ea0c1de11728278456d68ef34c4 Mon Sep 17 00:00:00 2001 From: Ronald Pandolfi Date: Mon, 23 Jun 2025 12:27:40 -0700 Subject: [PATCH 2/2] advance CI python versions --- .github/workflows/HGDL-CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/HGDL-CI.yml b/.github/workflows/HGDL-CI.yml index 5f90a84..6e89d96 100644 --- a/.github/workflows/HGDL-CI.yml +++ b/.github/workflows/HGDL-CI.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10', '3.11', '3.12' ] + python-version: ['3.11', '3.12', '3.13' ] steps: - uses: actions/checkout@v2