Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/bzlmod/libs/my_lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

def websockets_is_for_python_version(sanitized_version_check):
# We are checking that the name of the repository folders
# match the expexted generated names. If we update the folder
# structure or naming we will need to modify this test
return f"pip_{sanitized_version_check}_websockets" in websockets.__file__
# match the expected generated names. If we update the folder
# structure or naming we will need to modify this test.
return f"_{sanitized_version_check}_websockets" in websockets.__file__