Skip to content

v1.17.1

Choose a tag to compare

@github-actions github-actions released this 29 Jun 07:31
v1.17.1
1ed7a7c

Fixed

  • Native Windows gateway startup no longer crashes with No module named 'fcntl'
    (issue #84). acquire_singleton_lock/release_singleton_lock imported the
    Unix-only fcntl unconditionally; they now take the per-user single-instance
    lock via msvcrt.locking on Windows and fcntl.flock on POSIX (selected by a
    literal sys.platform check so type checkers narrow the platform-only
    imports). WSL is unaffected. (resource was already import-guarded.)