-
-
Notifications
You must be signed in to change notification settings - Fork 728
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
distributed hangs on Windows with Python 3.13 #8641
Comments
vstinner
added a commit
to vstinner/distributed
that referenced
this issue
May 7, 2024
Closes dask#8641. _WindowsTime is no longer needed on Python 3.13. On Python 3.13 on Windows, time.time() now uses GetSystemTimePreciseAsFileTime(), and time.monotonic() now uses QueryPerformanceCounter().
vstinner
added a commit
to vstinner/distributed
that referenced
this issue
May 7, 2024
Closes dask#8641. _WindowsTime is no longer needed on Windows with Python 3.13. On Windows, Python 3.13 now uses GetSystemTimePreciseAsFileTime() for time.time() and QueryPerformanceCounter() for time.monotonic(). * python/cpython#116781 * python/cpython#116822
2 tasks
I proposed the pull request #8642 to fix the issue. |
fjetter
pushed a commit
that referenced
this issue
May 8, 2024
Closes #8641. _WindowsTime is no longer needed on Windows with Python 3.13. On Windows, Python 3.13 now uses GetSystemTimePreciseAsFileTime() for time.time() and QueryPerformanceCounter() for time.monotonic(). * python/cpython#116781 * python/cpython#116822
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the issue:
Minimal Complete Verifiable Example:
Anything else we need to know?:
Environment:
The text was updated successfully, but these errors were encountered: