Skip to content

MNT update scikit-learn to 1.7.0 #104

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 9, 2025
Merged
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
17 changes: 10 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,35 @@ jobs:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with:
environments: dev
environments: >-
dev
nogil
cache: true

- name: Re-install local
run: |
# Needed on Windows CI to compile with Visual Studio compiler
# otherwise Meson detects a MINGW64 platform and use MINGW64
# toolchain
pixi reinstall -e dev --frozen fastcan -- -Csetup-args=--vsenv
pixi reinstall -e dev --frozen fastcan
pixi reinstall -e nogil --frozen fastcan

- name: Test with pytest
run: |
pixi run test
pixi run -e dev test
- name: Test with doctest
shell: bash
run: |
pixi run doc
CMD=doctest pixi run doc
pixi run -e dev doc
CMD=doctest pixi run -e dev doc
- name: Test nogil
run: |
pixi run nogil-eta
pixi run -e nogil nogil-eta
- name: Test coverage
if: runner.os == 'Linux'
shell: bash
run: |
FMT=xml pixi run test-coverage
FMT=xml pixi run -e dev test-coverage
- name: Upload coverage reports to Codecov
if: runner.os == 'Linux'
uses: codecov/codecov-action@v5
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,8 @@ jobs:
CIBW_ARCHS_LINUX: auto64
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_ARCHS_WINDOWS: auto64
CIBW_BEFORE_ALL_LINUX: yum install -y ninja-build python3-devel
# Needed on Windows CI to compile with Visual Studio compiler
# otherwise Meson detects a MINGW64 platform and use MINGW64
# toolchain
CIBW_CONFIG_SETTINGS_WINDOWS: "setup-args=--vsenv"
# Include free-threaded support
CIBW_ENABLE: cpython-freethreading
# Numpy, scipy, Cython only have free-threaded wheels on scientific-python-nightly-wheels
CIBW_BUILD_FRONTEND: 'pip; args: --pre --extra-index-url "https://pypi.anaconda.org/scientific-python-nightly-wheels/simple" --only-binary :all:'
- name: Upload package
uses: actions/upload-artifact@v4
with:
Expand Down
Loading