We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Python 3.11 removed the 2nd argument to shuffle.
Argh.
Rewrite any shuffles we have to seed the RNG so shuffle(x) gives the same result as shuffle(x, fn)
shuffle(x)
shuffle(x, fn)
The text was updated successfully, but these errors were encountered:
Hi, why was this an issue by the way? Cinder is currently on 3.10.
Sorry, something went wrong.
I think Vivaan and I got started on benchmarks without using Cinder, just the latest Python.
Successfully merging a pull request may close this issue.
Python 3.11 removed the 2nd argument to shuffle.
Argh.
Rewrite any shuffles we have to seed the RNG so
shuffle(x)
gives the same result asshuffle(x, fn)
The text was updated successfully, but these errors were encountered: