Skip to content

Commit 353e73b

Browse files
committed
[GR-21590] Update imports
PullRequest: graalpython/3836
2 parents 14870e9 + c68636e commit 353e73b

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "f942d7813c6847f2b87d5704228d40b2c242ba1f" }
1+
{ "overlay": "816fa8908eba5ad743452f2b92d9a4f852a3b996" }

graalpython/com.oracle.graal.python.test/src/tests/test_subprocess.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ def test_waitpid_group_child(self):
107107
res = os.waitpid(0, 0)
108108
assert res[1] == 0, res
109109

110-
@unittest.skipIf(sys.platform == 'win32', "Posix-specific")
110+
# @unittest.skipIf(sys.platform == 'win32', "Posix-specific")
111+
# Skipped because of transient: https://jira.oci.oraclecorp.com/browse/GR-65714
112+
@unittest.skip
111113
def test_waitpid_any_child(self):
112114
import os
113115
p = subprocess.Popen([sys.executable, "-c", "import time; time.sleep(0.1); 42"])

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,6 +1124,7 @@ def graalpython_gate_runner(args, tasks):
11241124
with Task('GraalPython JUnit', tasks, tags=[GraalPythonTags.junit]) as task:
11251125
if task:
11261126
run_mx(["build"], env={**os.environ, **LATEST_JAVA_HOME})
1127+
run_mx(["build", "--only", "JLINE3"], env={**os.environ})
11271128
if WIN32:
11281129
punittest(
11291130
[

mx.graalpython/suite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@
5353
},
5454
{
5555
"name": "tools",
56-
"version": "69860d57908cd7b3691d6646687c1cecbe69f36b",
56+
"version": "e37069020fd8ef1041694c0d1539df5aa49609a3",
5757
"subdir": True,
5858
"urls": [
5959
{"url": "https://github.com/oracle/graal", "kind": "git"},
6060
],
6161
},
6262
{
6363
"name": "regex",
64-
"version": "69860d57908cd7b3691d6646687c1cecbe69f36b",
64+
"version": "e37069020fd8ef1041694c0d1539df5aa49609a3",
6565
"subdir": True,
6666
"urls": [
6767
{"url": "https://github.com/oracle/graal", "kind": "git"},

scripts/wheelbuilder/darwin/pillow.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2025, 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

0 commit comments

Comments
 (0)