Skip to content

Commit 2d3d402

Browse files
committed
now using skl>=1.5.0
1 parent d463516 commit 2d3d402

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/pythonapp.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,6 @@ jobs:
5454
- name: Install basic dependencies
5555
run: |
5656
python -m pip install -e .[tests] -f https://download.pytorch.org/whl/torch_stable.html
57-
- name: Test with older SKLearn on Linux with py3.9 to check backward compatibility
58-
if: ${{ matrix.python-version == '3.9' && startsWith(matrix.os, 'ubuntu') == true }}
59-
run: python -m pip install scikit-learn==1.2.1
60-
- name: Pin SKLearn<1.5.0 on not Linux with py3.9
61-
if: ${{ !(matrix.python-version == '3.9' && startsWith(matrix.os, 'ubuntu') == true) }}
62-
run: python -m pip install "scikit-learn<1.5.0"
6357
- name: Run basic tests without extra
6458
run: pytest
6559
- name: Coverage on basic tests without extra

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"numpy>=1.15",
2424
"onnxconverter-common>=1.6.0",
2525
"scipy",
26-
"scikit-learn",
26+
"scikit-learn>=1.5.0",
2727
"torch>1.7.0",
2828
"psutil",
2929
"dill",

0 commit comments

Comments
 (0)