Skip to content

Commit 6294990

Browse files
committed
[GR-54762] Developer info is consistent with other suites.
PullRequest: graalpython/3389
2 parents aa83734 + ddd20d2 commit 6294990

File tree

11 files changed

+32
-25
lines changed

11 files changed

+32
-25
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ language runtime. The main focus is on user-observable behavior of the engine.
2121
** running example via `jbang hello@oracle/graalpython` or `jbang hello@oracle/graalpython "print(1*4)"`
2222
** creating new script via: `jbang init --template=graalpy@oracle/graalpython myscript.java`
2323
** creating new script with local maven repo for testing: `jbang init --template=graalpy_local_repo@oracle/graalpython -Dpath_to_local_repo=/absolute/path/to/local/maven/repository myscript.java'
24+
* Updated developer metadata of Maven artifacts.
2425

2526
## Version 23.1.0
2627
* Oracle GraalPy distributions (previously known as GraalPy Enterprise) are now available under the [GFTC license](https://www.oracle.com/downloads/licenses/graal-free-license.html). The community builds published on Github have been renamed to `graalpy-community-<version>-<os>-<arch>.tar.gz`.

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "5b5fbd59f8657832154426ae91262524e744acc8" }
1+
{ "overlay": "387f21c181437260b3f4f66cb4595a09c2b0040e" }

graalpython/com.oracle.graal.python.test.integration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Additionally, one can change the polyglot artifacts version with
6464
<maven.compiler.source>17</maven.compiler.source>
6565
<maven.compiler.target>17</maven.compiler.target>
6666
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
67-
<com.oracle.graal.python.test.polyglot.version>24.0.1-dev</com.oracle.graal.python.test.polyglot.version>
67+
<com.oracle.graal.python.test.polyglot.version>24.0.2-dev</com.oracle.graal.python.test.polyglot.version>
6868
</properties>
6969

7070
<build>

graalpython/graalpy-archetype-polyglot-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ SOFTWARE.
4444

4545
<groupId>org.graalvm.python</groupId>
4646
<artifactId>graalpy-archetype-polyglot-app</artifactId>
47-
<version>24.0.1</version>
47+
<version>24.0.2</version>
4848
<packaging>maven-archetype</packaging>
4949

5050
<properties>

graalpython/graalpy-archetype-polyglot-app/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#set( $symbol_dollar = '$' )
1212
<properties>
13-
<graalpy.version>24.0.1</graalpy.version>
13+
<graalpy.version>24.0.2</graalpy.version>
1414
<graalpy.edition>python-community</graalpy.edition>
1515
<maven.compiler.target>17</maven.compiler.target>
1616
<maven.compiler.source>17</maven.compiler.source>

graalpython/graalpy-jbang/examples/hello.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
*/
4141
///usr/bin/env jbang "$0" "$@" ; exit $?
4242

43-
//DEPS org.graalvm.python:python-language:24.0.1
44-
//DEPS org.graalvm.python:python-resources:24.0.1
45-
//DEPS org.graalvm.python:python-launcher:24.0.1
46-
//DEPS org.graalvm.python:python-embedding:24.0.1
43+
//DEPS org.graalvm.python:python-language:24.0.2
44+
//DEPS org.graalvm.python:python-resources:24.0.2
45+
//DEPS org.graalvm.python:python-launcher:24.0.2
46+
//DEPS org.graalvm.python:python-embedding:24.0.2
4747
//PIP termcolor
4848

4949
import org.graalvm.polyglot.Context;

graalpython/graalpy-jbang/templates/graalpy-template.java.qute

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
{/for}
55
{#if dependencies.isEmpty()}// //DEPS <dependency1> <dependency2>{/if}
66

7-
//DEPS org.graalvm.python:python-language:24.0.1
8-
//DEPS org.graalvm.python:python-resources:24.0.1
9-
//DEPS org.graalvm.python:python-launcher:24.0.1
10-
//DEPS org.graalvm.python:python-embedding:24.0.1
7+
//DEPS org.graalvm.python:python-language:24.0.2
8+
//DEPS org.graalvm.python:python-resources:24.0.2
9+
//DEPS org.graalvm.python:python-launcher:24.0.2
10+
//DEPS org.graalvm.python:python-embedding:24.0.2
1111
//PIP termcolor
1212

1313
import org.graalvm.polyglot.Context;

graalpython/graalpy-jbang/templates/graalpy-template_local_repo.java.qute

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
//REPOS mc=https://repo1.maven.org/maven2/
88
//REPOS local=file://{path_to_local_repo}
9-
//DEPS org.graalvm.python:python-language:24.0.1
10-
//DEPS org.graalvm.python:python-resources:24.0.1
11-
//DEPS org.graalvm.python:python-launcher:24.0.1
12-
//DEPS org.graalvm.python:python-embedding:24.0.1
9+
//DEPS org.graalvm.python:python-language:24.0.2
10+
//DEPS org.graalvm.python:python-resources:24.0.2
11+
//DEPS org.graalvm.python:python-launcher:24.0.2
12+
//DEPS org.graalvm.python:python-embedding:24.0.2
1313
//PIP termcolor
1414

1515
import org.graalvm.polyglot.Context;

graalpython/graalpy-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ SOFTWARE.
4747
<groupId>org.graalvm.python</groupId>
4848
<artifactId>graalpy-maven-plugin</artifactId>
4949
<packaging>maven-plugin</packaging>
50-
<version>24.0.1</version>
50+
<version>24.0.2</version>
5151
<name>graalpy-maven-plugin</name>
5252

5353
<properties>
5454
<maven.compiler.target>17</maven.compiler.target>
5555
<maven.compiler.source>17</maven.compiler.source>
5656
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57-
<graalpy.version>24.0.1</graalpy.version>
57+
<graalpy.version>24.0.2</graalpy.version>
5858
</properties>
5959

6060
<build>

mx.graalpython/mx_graalpython.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2076,6 +2076,12 @@ def _python_checkpatchfiles():
20762076
'safetensors-0.3.3.patch',
20772077
'tensorflow-io-0.34.0.patch',
20782078
'tensorflow-io-gcs-filesystem-0.34.0.patch',
2079+
# Whole license in the field. It's BSD-3-Clause
2080+
'pyzmq.patch',
2081+
# Whole license in the field. It's PSF
2082+
'matplotlib-3.5.3.patch',
2083+
'matplotlib-3.6.3.patch',
2084+
'matplotlib-3.7.0.patch',
20792085
}
20802086
allowed_licenses = [
20812087
"MIT",

0 commit comments

Comments
 (0)