Skip to content

Commit 0e934e4

Browse files
committed
bump imports
1 parent c8c7e7e commit 0e934e4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -716,10 +716,10 @@ def update_import_cmd(args):
716716
join(mx.dependency("SULONG_LIBS").output, "polyglot.h"),
717717
join(_suite.dir, "graalpython", "com.oracle.graal.python.cext", "include", "polyglot.h")
718718
)
719-
# make sure that truffle and regex are the same version
720-
elif name == "regex":
721-
update_import("truffle", callback=callback)
722-
elif name == "truffle":
719+
# make sure that sulong and regex are the same version
720+
if name == "regex":
721+
update_import("sulong", callback=callback)
722+
elif name == "sulong":
723723
update_import("regex", callback=callback)
724724
update_import(name, callback=callback)
725725

mx.graalpython/suite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
},
2626
{
2727
"name": "sulong",
28-
"version": "f74779918d382378586734328b620ed59882fe81",
28+
"version": "588b2880ed6a7575179cc771776f4a87f16783e3",
2929
"subdir": True,
3030
"urls": [
3131
{"url": "https://github.com/oracle/graal", "kind": "git"},
3232
]
3333
},
3434
{
3535
"name": "regex",
36-
"version": "f74779918d382378586734328b620ed59882fe81",
36+
"version": "588b2880ed6a7575179cc771776f4a87f16783e3",
3737
"subdir": True,
3838
"urls": [
3939
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)