From 806ea54c8fde5ca9bf9dce8828d1b5f1df76bc20 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Wed, 2 Oct 2024 16:08:42 -0600 Subject: [PATCH] Don't install components for testing The subsequent call to `mamba install` updates *shapely* to 2.0, which breaks the <1.9 requirement from #164. --- .github/workflows/test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c061c1b..ac7474b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,15 +41,15 @@ jobs: mamba install --file=requirements.txt --file=requirements-testing.txt mamba list - - name: Install Windows requirements - if: matrix.os == 'windows-latest' - run: | - mamba install pymt_child pymt_hydrotrend pymt_permamodel + # - name: Install Windows requirements + # if: matrix.os == 'windows-latest' + # run: | + # mamba install pymt_child pymt_hydrotrend pymt_permamodel - - name: Install Unix requirements - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' - run: | - mamba install pymt_cem pymt_child pymt_hydrotrend pymt_permamodel + # - name: Install Unix requirements + # if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + # run: | + # mamba install pymt_cem pymt_child pymt_hydrotrend pymt_permamodel - name: Build and install package run: |