Skip to content

Commit 9f69697

Browse files
committed
Merge branch 'master' into bugfix/GR-10330
2 parents d364e0c + 6e4ce5e commit 9f69697

File tree

18 files changed

+917
-231
lines changed

18 files changed

+917
-231
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,4 @@ Python3.g4.stamp
5656
/*.err
5757
/graalpython/include/*
5858
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/As_FileDescriptor_Testfile
59+
/.*.csv*

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Python Changelog
2+
3+
This changelog summarizes major changes between GraalVM versions of the Python
4+
language runtime. The main focus is on user-observable behavior of the engine.
5+
6+
## Version 1.0.0 RC2
7+
8+
* Updates to the polyglot and embedding APIs
9+
* Many additions to the language core implementation
10+
* Performance improvements to the parser
11+
* C-API improvements to compile and run simple C extensions
12+
* Support breakpoints on caught and uncaught exceptions in debugger
13+
14+
## Version 1.0.0 RC1
15+
16+
* LICENSE set to The Universal Permissive License (UPL), Version 1.0.

ci.jsonnet

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
overlay: "4c51f4dae2d670a4895aaafbe47780ac2541c008",
2+
overlay: "2081dc054251c6658f7ce8f4b6671a474edbf2f6",
33

44
// ======================================================================================================
55
//
@@ -23,7 +23,10 @@
2323
"2h": "2:00:00",
2424
"3h": "3:00:00",
2525
"4h": "4:00:00",
26-
"10h": "10:00:00"
26+
"8h": "8:00:00",
27+
"10h": "10:00:00",
28+
"16h": "16:00:00",
29+
"20h": "20:00:00",
2730
},
2831
TIME_LIMIT: TIME_LIMIT,
2932

@@ -142,6 +145,7 @@
142145
HOST_VM_CONFIG: "graal-core",
143146
},
144147
},
148+
graalCoreMixin: graalCoreMixin,
145149

146150
local sulongMixin = labsjdk8Mixin + {
147151
environment +: {

0 commit comments

Comments
 (0)