Skip to content
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: 17 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ jobs:
- os: windows-latest
python: 314
platform_id: win_amd64
- os: windows-latest
python: 314t
platform_id: win_amd64

# Linux 64 bit manylinux2014
- os: ubuntu-latest
Expand Down Expand Up @@ -106,6 +109,10 @@ jobs:
python: 314
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: 314t
platform_id: manylinux_x86_64
manylinux_image: manylinux2014

# Linux 64 bit manylinux2014
- os: ubuntu-24.04-arm
Expand Down Expand Up @@ -133,6 +140,10 @@ jobs:
python: 314
platform_id: manylinux_aarch64
manylinux_image: manylinux2014
- os: ubuntu-24.04-arm
python: 314t
platform_id: manylinux_aarch64
manylinux_image: manylinux2014

# MacOS x86_64
- os: macos-13
Expand All @@ -154,6 +165,9 @@ jobs:
- os: macos-13
python: 314
platform_id: macosx_x86_64
- os: macos-13
python: 314t
platform_id: macosx_x86_64

# MacOS arm64
- os: macos-14
Expand All @@ -175,6 +189,9 @@ jobs:
- os: macos-14
python: 314
platform_id: macosx_arm64
- os: macos-14
python: 314t
platform_id: macosx_arm64

steps:
- name: Checkout scikit-learn
Expand Down
4 changes: 3 additions & 1 deletion sklearn/utils/tests/test_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ def normalize_main_module(filters):
]

for worker_warning_filter in all_worker_warning_filters:
assert normalize_main_module(worker_warning_filter) == main_warning_filters
assert normalize_main_module(
worker_warning_filter
) == normalize_main_module(main_warning_filters)


@pytest.mark.xfail(_IS_WASM, reason="Pyodide always use the sequential backend")
Expand Down
Loading