Skip to content

Commit

Permalink
Check again newer versions for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
leila-pujal committed Jul 4, 2024
1 parent c7ea60c commit 3059d2a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
py: ["3.9", "3.10", "3.11"]
py: ["3.10", "3.11"]

steps:
- uses: "actions/checkout@v3"
Expand All @@ -29,12 +29,20 @@ jobs:
with:
python-version: ${{ matrix.py }}

- name: Install dependencies for testing
- name: Install old dependencies for testing
if: ${{ matrix.py == '3.9'}}
run: |
pip install --upgrade pip
pip install pytest pytest-md pytest-emoji pytest-cov
pip install numpy==1.23 scipy==1.11.1 attrs==21.3.0
- name: Install new dependencies for testing
if: ${{ matrix.py == '3.11'}}
run: |
pip install --upgrade pip
pip install pytest pytest-md pytest-emoji pytest-cov
pip install numpy==2.0.0 scipy==1.14.0
- name: Install development version
run: |
# Need editable mode in order to include the test files
Expand Down

0 comments on commit 3059d2a

Please sign in to comment.