From 4997759692a6417e1cde2e78b8e6f822a7d46c15 Mon Sep 17 00:00:00 2001 From: Arne de Laat Date: Fri, 11 Oct 2024 21:54:26 +0200 Subject: [PATCH] Install less packages with conda in GitHub Actions --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 401c791f..1c90d4b5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,8 +25,8 @@ jobs: with: python-version: ${{ matrix.python-version }} auto-update-conda: true - - run: conda install --quiet --yes astropy numpy scipy pytables numba - - run: pip install -e .[dev] + - run: conda install --quiet --yes hdf5 + - run: pip install -e .[astropy,dev] - run: make unittests - run: coverage report @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.12' - run: pip install ruff - run: make linttest