Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion mojo/extensions.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@ load("//mojo:mojo_host_platform.bzl", "mojo_host_platform")
load("//mojo/private:mojo_gpu_toolchains_repository.bzl", "mojo_gpu_toolchains_repository")

_PLATFORMS = ["linux_aarch64", "linux_x86_64", "macos_arm64"]
_DEFAULT_VERSION = "25.4.0.dev2025050902"
_DEFAULT_VERSION = "25.5.0.dev2025062305"
_KNOWN_SHAS = {
"25.4.0.dev2025050902": {
"linux_aarch64": "d52c67f245575397d8176010d27bd12e76cde297ed8ee7f07dcc73fe48955508",
"linux_x86_64": "69898a4ffb328489e5c7c1c7e0cba37cd64dd0fa87b4a98501b3562dc89f2695",
"macos_arm64": "8856745cab1cb88fbba174afb9784cbdda865c8a4e4db5693750efefe7505160",
},
"25.5.0.dev2025062305": {
"linux_aarch64": "7b516b9ef485cc25f981d438bba974108dc115509d17f58431866bde8f962043",
"linux_x86_64": "51302b87d8d83891762877be0bf73fffbf196a47246be339e818c4b3480e1ac4",
"macos_arm64": "694e3be8f2180a67602e781fcbde5c0241d1b5951300962a04d5e695ead7db28",
},
}
_PLATFORM_MAPPINGS = {
"linux_aarch64": "manylinux_2_34_aarch64",
Expand Down
2 changes: 1 addition & 1 deletion tests/python/deps_python_test.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_basic_numpy_example():
Python.list(4, 5, 6)
)
)
assert_equal(array.shape, Python.tuple(2, 3))
assert_equal(String(array.shape), "(2, 3)")


def main():
Expand Down