Skip to content

Commit

Permalink
Don't install components for testing
Browse files Browse the repository at this point in the history
The subsequent call to `mamba install` updates *shapely* to 2.0,
which breaks the <1.9 requirement from #164.
  • Loading branch information
mdpiper committed Oct 2, 2024
1 parent fe68474 commit 806ea54
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 806ea54

Please sign in to comment.