Skip to content

Commit faeb128

Browse files
committed
[GR-21590] Update imports
PullRequest: graalpython/3181
2 parents 6a03c02 + fec60e4 commit faeb128

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "af0d52eb5dfe7fd02ca5ec0d61fb6b8979944714" }
1+
{ "overlay": "9a8c4eb0e43244257b545c73d64913f13dd9967d" }

graalpython/com.oracle.graal.python.test/src/tests/standalone/test_standalone.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
is_enabled = 'ENABLE_STANDALONE_UNITTESTS' in os.environ and os.environ['ENABLE_STANDALONE_UNITTESTS'] == "true"
4949
skip_purge = 'SKIP_STANDALONE_UNITTESTS_PURGE' in os.environ and os.environ['SKIP_STANDALONE_UNITTESTS_PURGE'] == "true"
5050

51-
MVN_CMD = [shutil.which('mvn')]
51+
MVN_CMD = [shutil.which('mvn'), "--batch-mode"]
5252

5353
def run_cmd(cmd, env, cwd=None):
5454
print(f"Executing:\n {cmd=}\n")
@@ -87,7 +87,6 @@ def get_gp():
8787
"native-image exists: " + str(os.path.exists(ni)),
8888
"javac exists: " + str(os.path.exists(jc)),
8989
"graalpy exits: " + str(os.path.exists(graalpy)),
90-
"java exists: " + str(os.path.exists(java)),
9190
sep="\n",
9291
)
9392
assert False

graalpython/lib-graalpython/modules/standalone/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
22
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
#
44
# The Universal Permissive License (UPL), Version 1.0
@@ -395,7 +395,7 @@ def download_maven_artifact(modules_path, artifact, parsed_args):
395395
cmd += ["-v", MVN_GRAALPY_VERSION]
396396
cmd += ["-o", modules_path]
397397
if parsed_args.verbose:
398-
print(f"downloading graalpython maven artefacts: {' '.join(cmd)}")
398+
print(f"downloading graalpython maven artifacts: {' '.join(cmd)}")
399399

400400
if parsed_args.verbose:
401401
p = subprocess.run(cmd)

mx.graalpython/suite.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,31 +45,31 @@
4545
},
4646
{
4747
"name": "sdk",
48-
"version": "f9b06626162a843360d00e71193821e42d7a9f06",
48+
"version": "21e21a8f00f6333b91bcd3b1a25eaa5616f008a1",
4949
"subdir": True,
5050
"urls": [
5151
{"url": "https://github.com/oracle/graal", "kind": "git"},
5252
]
5353
},
5454
{
5555
"name": "tools",
56-
"version": "f9b06626162a843360d00e71193821e42d7a9f06",
56+
"version": "21e21a8f00f6333b91bcd3b1a25eaa5616f008a1",
5757
"subdir": True,
5858
"urls": [
5959
{"url": "https://github.com/oracle/graal", "kind": "git"},
6060
],
6161
},
6262
{
6363
"name": "sulong",
64-
"version": "f9b06626162a843360d00e71193821e42d7a9f06",
64+
"version": "21e21a8f00f6333b91bcd3b1a25eaa5616f008a1",
6565
"subdir": True,
6666
"urls": [
6767
{"url": "https://github.com/oracle/graal", "kind": "git"},
6868
]
6969
},
7070
{
7171
"name": "regex",
72-
"version": "f9b06626162a843360d00e71193821e42d7a9f06",
72+
"version": "21e21a8f00f6333b91bcd3b1a25eaa5616f008a1",
7373
"subdir": True,
7474
"urls": [
7575
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)