From 25f220b0eb52b62403fd92667c4dd4372e1f959b Mon Sep 17 00:00:00 2001 From: Bart Schilperoort Date: Thu, 11 Jan 2024 10:06:17 +0100 Subject: [PATCH] Try installing package without hatch --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 424c0f98..87f3a66a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,9 +31,9 @@ jobs: python3 --version - name: Upgrade pip and install dependencies run: | - python3 -m pip install --upgrade hatch h5py + python3 -m pip install .[dev] - name: Run unit tests - run: hatch run test + run: python3 -m pytest - name: Verify that we can build the package run: hatch build