Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ jobs:
pip install --upgrade pip spin
spin setup-submodule
pip install .[build,doc]
pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scikit-learn --force

- run:
name: build treeple
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
pip install -r test_requirements.txt

- name: Install nightly wheels for scikit-learn (only for ubuntu 3.12)
if: ${{ matrix.python-version == '3.12' }} && ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest' }}
run: |
pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scikit-learn --force

Expand Down Expand Up @@ -189,7 +189,6 @@ jobs:
pip install compilers
pip install -r build_requirements.txt
pip install -r test_requirements.txt
pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scikit-learn --force

- name: Prepare compiler cache
id: prep-ccache
Expand Down Expand Up @@ -285,7 +284,6 @@ jobs:
pip install spin
pip install -r build_requirements.txt
pip install -r test_requirements.txt
pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scikit-learn --force

- name: Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion build_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ meson-python>=0.16.0
cython>=3.0.10
ninja
numpy
scikit-learn>=1.5.0
scikit-learn~=1.6.0
click
rich-click
doit
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ requires = [
"setuptools<=65.5",
"packaging",
"Cython>=3.0.10",
"scikit-learn>=1.6.0",
"scikit-learn~=1.6.0",
"scipy>=1.5.0",
"numpy>=1.25; python_version>='3.9'"
]
Expand Down