-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
[ci] [dask] test lightgbm.dask
on macOS
#6677
Conversation
@@ -254,6 +254,9 @@ jobs: | |||
- script: | | |||
git clean -d -f -x | |||
displayName: 'Clean source directory' | |||
# LGBM_SKIP_DASK_TESTS=true is set below only because running the tests under emulation is so slow... | |||
# in theory, 'lightgbm.dask' should work without issue on aarch64 Linux systems. | |||
# That could probably be removed as part of https://github.com/microsoft/LightGBM/issues/6788 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lightgbm.dask
on macOSlightgbm.dask
on macOS
This is now working! I think it's ready for review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, great PR, thanks!
Very nice to see Dask working on macOS! 🎉
Just one question: why don't we test the latest Dask among the latest libraries? |
Also, maybe it's better to use |
Sure, we can switch this to |
I think I did not add it there when setting that up because there weren't nightly versions published of I'd support trying something like this in those jobs if you'd like to try it: python -m pip install 'git+https://github.com/dask/dask.git@main' Although some things to note:
|
oops sorry, I meant |
Contributes to #3782
Enables the Dask tests on macOS, based on this comment form @neNasko1 : #6569 (comment)