Skip to content

Commit 25c411e

Browse files
horakivomsimacek
authored andcommitted
[GR-21590] Update imports.
PullRequest: graalpython/3553
2 parents 7c20b30 + 89b18a3 commit 25c411e

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "a25abddf9b9df8e72dbe488c7c3e58ac0218cc20" }
1+
{ "overlay": "7be2563a4471ba4087e7c0afa91a567205d3de73" }

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@
3838
# SOFTWARE.
3939

4040
import sys
41+
import platform
4142

42-
if sys.platform != 'win32' and (sys.implementation.name != 'graalpy' or __graalpython__.posix_module_backend() != 'java'):
43+
if (sys.platform != 'win32' and (sys.platform != 'linux' or platform.machine() != 'aarch64')) and (sys.implementation.name != 'graalpy' or __graalpython__.posix_module_backend() != 'java'):
4344
import os
4445
import re
4546
import select

graalpython/com.oracle.graal.python.test/src/tests/unittest_tags/test_multiprocessing_spawn.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
*test.test_multiprocessing_spawn.test_processes.WithProcessesTestBarrier.test_timeout
7171
*test.test_multiprocessing_spawn.test_processes.WithProcessesTestBarrier.test_wait_return
7272
*test.test_multiprocessing_spawn.test_processes.WithProcessesTestCondition.test_notify
73+
*test.test_multiprocessing_spawn.test_processes.WithProcessesTestCondition.test_notify_all
7374
*test.test_multiprocessing_spawn.test_processes.WithProcessesTestCondition.test_notify_n
7475
*test.test_multiprocessing_spawn.test_processes.WithProcessesTestCondition.test_timeout
7576
*test.test_multiprocessing_spawn.test_processes.WithProcessesTestCondition.test_wait_result

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": "8a88c4486d4c0463bb17de5099d9ac52203b920a",
48+
"version": "8646e46d19eda78ed55366a4b3158fecdb12738d",
4949
"subdir": True,
5050
"urls": [
5151
{"url": "https://github.com/oracle/graal", "kind": "git"},
5252
]
5353
},
5454
{
5555
"name": "tools",
56-
"version": "8a88c4486d4c0463bb17de5099d9ac52203b920a",
56+
"version": "8646e46d19eda78ed55366a4b3158fecdb12738d",
5757
"subdir": True,
5858
"urls": [
5959
{"url": "https://github.com/oracle/graal", "kind": "git"},
6060
],
6161
},
6262
{
6363
"name": "sulong",
64-
"version": "8a88c4486d4c0463bb17de5099d9ac52203b920a",
64+
"version": "8646e46d19eda78ed55366a4b3158fecdb12738d",
6565
"subdir": True,
6666
"urls": [
6767
{"url": "https://github.com/oracle/graal", "kind": "git"},
6868
]
6969
},
7070
{
7171
"name": "regex",
72-
"version": "8a88c4486d4c0463bb17de5099d9ac52203b920a",
72+
"version": "8646e46d19eda78ed55366a4b3158fecdb12738d",
7373
"subdir": True,
7474
"urls": [
7575
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)