-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
[Job] [python 3.11] Fixes agent info container type #36642
[Job] [python 3.11] Fixes agent info container type #36642
Conversation
Signed-off-by: frazierprime <[email protected]>
95497bc
to
33708e6
Compare
Not sure this is related to my change, but here's the output from the broken tests.
|
The test failures are unrelated and flaky according to https://flaky-tests.ray.io/ |
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.
Looks good to me, thanks for the fix. @rickyyx I guess at some point in the Python 3.11 process, all existing Ray tests will be run with Python 3.11, but is there some CI job where we should add jobs tests today?
I think right now - minimal test is the only test group we run py > 3.8 We should run some non-minimal tests on py >3.8 as well. I believe job is not part of minimal? |
Right, jobs requires the dashboard server, so I think it's not part of minimal. |
Breaking change introduced in python 3.11 to the random package https://docs.python.org/3.11/library/random.html#random.sample Sample throws a type error when passed a non-sequence object (in this case, a set). This PR changes the set type to sorted, as per the error message: TypeError: Population must be a sequence. For dicts or sets, use sorted(d). Fixes ray-project#36578 Signed-off-by: frazierprime <[email protected]> Signed-off-by: e428265 <[email protected]>
Why are these changes needed?
Breaking change introduced in python 3.11 to the random package https://docs.python.org/3.11/library/random.html#random.sample
Sample throws a type error when passed a non-sequence object (in this case, a set).
This PR changes the
set
type tosorted
, as per the error message:TypeError: Population must be a sequence. For dicts or sets, use sorted(d).
Related issue number
Fixes #36578
Checks - TODO
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR. - See comment in issue. Can't build project dependencies in python3.11