Skip to content

Commit

Permalink
Pin scipy in CI, not setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Nov 8, 2024
1 parent 0be92de commit 3915a46
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]
ctapipe-version: ["0.19.3", "0.20.0"]
include:
# ctapipe 0.21 requires >= 3.10
Expand Down Expand Up @@ -53,7 +53,8 @@ jobs:
CTAPIPE_VERSION: ${{ matrix.ctapipe-version }}
run: |
pip install -e .
pip install pytest-cov "ctapipe==$CTAPIPE_VERSION"
# TODO: remove pypi pin when dropping support for ctapipe <0.21
pip install pytest-cov "ctapipe==$CTAPIPE_VERSION" "scipy<1.14a0"
ctapipe-info --version | grep "$CTAPIPE_VERSION"
git describe --tags
Expand Down

0 comments on commit 3915a46

Please sign in to comment.