Skip to content

Commit

Permalink
scikit-learn<1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mshr-h committed May 28, 2024
1 parent 485ed98 commit e89b7f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
- name: Test with older SKLearn on Linux with py3.9 to check backward compatibility
if: ${{ matrix.python-version == '3.9' && startsWith(matrix.os, 'ubuntu') == true }}
run: python -m pip install scikit-learn==1.2.1
- name: Pin SKLearn==1.4.2 on not Linux with py3.9
- name: Pin SKLearn<1.5.0 on not Linux with py3.9
if: ${{ !(matrix.python-version == '3.9' && startsWith(matrix.os, 'ubuntu') == true) }}
run: python -m pip install scikit-learn==1.4.2
run: python -m pip install "scikit-learn<1.5.0"
- name: Run basic tests without extra
run: pytest
- name: Coverage on basic tests without extra
Expand Down

0 comments on commit e89b7f9

Please sign in to comment.