Skip to content

Commit d05d3a4

Browse files
committed
Exclude library-tester from import update for now
1 parent 827ec69 commit d05d3a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ def update_import_cmd(args):
11601160
exec(f.read(), d, d) # pylint: disable=exec-used;
11611161
for suite in d["suite"].get("imports", {}).get("suites", []):
11621162
import_name = suite["name"]
1163-
if suite.get("version") and import_name not in local_names:
1163+
if suite.get("version") and import_name not in local_names and import_name != 'library-tester':
11641164
imports_to_update.add(import_name)
11651165

11661166
revisions = {}

0 commit comments

Comments
 (0)