From 78f883b651b9dc7727a9eb704696d235a4a4eb5b Mon Sep 17 00:00:00 2001 From: Liam Gray Date: Thu, 8 Aug 2024 18:03:39 -0700 Subject: [PATCH 1/2] feat(ci): remove bitshuffle build and editable installs --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7c90e025..7c1ae0d9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,7 +64,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install ch_util - run: pip install -e .[test] --no-binary bitshuffle + run: pip install -e .[test] - name: Run tests run: pytest . From 1c90040c24d031982c591d241903f036205e1eb9 Mon Sep 17 00:00:00 2001 From: Liam Gray Date: Thu, 8 Aug 2024 18:11:32 -0700 Subject: [PATCH 2/2] build(pyproject): update numpy minimum version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a268a9e7..c3c28bec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ dependencies = [ "matplotlib", "mpi4py", "networkx >= 2.0", - "numpy >= 1.16,<2", + "numpy >= 1.24", "peewee >= 3.14.1", "scipy", "skyfield >= 1.10"