Skip to content

Commit

Permalink
[GR-54762] Developer info is consistent with other suites.
Browse files Browse the repository at this point in the history
PullRequest: graalpython/3389
  • Loading branch information
ansalond committed Jul 2, 2024
2 parents aa83734 + ddd20d2 commit 6294990
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 25 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ language runtime. The main focus is on user-observable behavior of the engine.
** running example via `jbang hello@oracle/graalpython` or `jbang hello@oracle/graalpython "print(1*4)"`
** creating new script via: `jbang init --template=graalpy@oracle/graalpython myscript.java`
** 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'
* Updated developer metadata of Maven artifacts.

## Version 23.1.0
* 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`.
Expand Down
2 changes: 1 addition & 1 deletion ci.jsonnet
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "overlay": "5b5fbd59f8657832154426ae91262524e744acc8" }
{ "overlay": "387f21c181437260b3f4f66cb4595a09c2b0040e" }
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Additionally, one can change the polyglot artifacts version with
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<com.oracle.graal.python.test.polyglot.version>24.0.1-dev</com.oracle.graal.python.test.polyglot.version>
<com.oracle.graal.python.test.polyglot.version>24.0.2-dev</com.oracle.graal.python.test.polyglot.version>
</properties>

<build>
Expand Down
2 changes: 1 addition & 1 deletion graalpython/graalpy-archetype-polyglot-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ SOFTWARE.

<groupId>org.graalvm.python</groupId>
<artifactId>graalpy-archetype-polyglot-app</artifactId>
<version>24.0.1</version>
<version>24.0.2</version>
<packaging>maven-archetype</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#set( $symbol_dollar = '$' )
<properties>
<graalpy.version>24.0.1</graalpy.version>
<graalpy.version>24.0.2</graalpy.version>
<graalpy.edition>python-community</graalpy.edition>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
Expand Down
8 changes: 4 additions & 4 deletions graalpython/graalpy-jbang/examples/hello.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
*/
///usr/bin/env jbang "$0" "$@" ; exit $?

//DEPS org.graalvm.python:python-language:24.0.1
//DEPS org.graalvm.python:python-resources:24.0.1
//DEPS org.graalvm.python:python-launcher:24.0.1
//DEPS org.graalvm.python:python-embedding:24.0.1
//DEPS org.graalvm.python:python-language:24.0.2
//DEPS org.graalvm.python:python-resources:24.0.2
//DEPS org.graalvm.python:python-launcher:24.0.2
//DEPS org.graalvm.python:python-embedding:24.0.2
//PIP termcolor

import org.graalvm.polyglot.Context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
{/for}
{#if dependencies.isEmpty()}// //DEPS <dependency1> <dependency2>{/if}

//DEPS org.graalvm.python:python-language:24.0.1
//DEPS org.graalvm.python:python-resources:24.0.1
//DEPS org.graalvm.python:python-launcher:24.0.1
//DEPS org.graalvm.python:python-embedding:24.0.1
//DEPS org.graalvm.python:python-language:24.0.2
//DEPS org.graalvm.python:python-resources:24.0.2
//DEPS org.graalvm.python:python-launcher:24.0.2
//DEPS org.graalvm.python:python-embedding:24.0.2
//PIP termcolor

import org.graalvm.polyglot.Context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

//REPOS mc=https://repo1.maven.org/maven2/
//REPOS local=file://{path_to_local_repo}
//DEPS org.graalvm.python:python-language:24.0.1
//DEPS org.graalvm.python:python-resources:24.0.1
//DEPS org.graalvm.python:python-launcher:24.0.1
//DEPS org.graalvm.python:python-embedding:24.0.1
//DEPS org.graalvm.python:python-language:24.0.2
//DEPS org.graalvm.python:python-resources:24.0.2
//DEPS org.graalvm.python:python-launcher:24.0.2
//DEPS org.graalvm.python:python-embedding:24.0.2
//PIP termcolor

import org.graalvm.polyglot.Context;
Expand Down
4 changes: 2 additions & 2 deletions graalpython/graalpy-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ SOFTWARE.
<groupId>org.graalvm.python</groupId>
<artifactId>graalpy-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>24.0.1</version>
<version>24.0.2</version>
<name>graalpy-maven-plugin</name>

<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<graalpy.version>24.0.1</graalpy.version>
<graalpy.version>24.0.2</graalpy.version>
</properties>

<build>
Expand Down
6 changes: 6 additions & 0 deletions mx.graalpython/mx_graalpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -2076,6 +2076,12 @@ def _python_checkpatchfiles():
'safetensors-0.3.3.patch',
'tensorflow-io-0.34.0.patch',
'tensorflow-io-gcs-filesystem-0.34.0.patch',
# Whole license in the field. It's BSD-3-Clause
'pyzmq.patch',
# Whole license in the field. It's PSF
'matplotlib-3.5.3.patch',
'matplotlib-3.6.3.patch',
'matplotlib-3.7.0.patch',
}
allowed_licenses = [
"MIT",
Expand Down
14 changes: 7 additions & 7 deletions mx.graalpython/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"url": "http://www.graalvm.org/",

"developer": {
"name": "Truffle and Graal developers",
"email": "graalvm-users@oss.oracle.com",
"organization": "Graal",
"name": "GraalVM Development",
"email": "graalvm-dev@oss.oracle.com",
"organization": "Oracle Corporation",
"organizationUrl": "http://www.graalvm.org/",
},

Expand All @@ -45,31 +45,31 @@
},
{
"name": "sdk",
"version": "bf0bb9bbfe346fe1b0868a56790e4d3fb9f0392e",
"version": "5616789e91e18e90bbe42285102856823ff8e7c9",
"subdir": True,
"urls": [
{"url": "https://github.com/oracle/graal", "kind": "git"},
]
},
{
"name": "tools",
"version": "bf0bb9bbfe346fe1b0868a56790e4d3fb9f0392e",
"version": "5616789e91e18e90bbe42285102856823ff8e7c9",
"subdir": True,
"urls": [
{"url": "https://github.com/oracle/graal", "kind": "git"},
],
},
{
"name": "sulong",
"version": "bf0bb9bbfe346fe1b0868a56790e4d3fb9f0392e",
"version": "5616789e91e18e90bbe42285102856823ff8e7c9",
"subdir": True,
"urls": [
{"url": "https://github.com/oracle/graal", "kind": "git"},
]
},
{
"name": "regex",
"version": "bf0bb9bbfe346fe1b0868a56790e4d3fb9f0392e",
"version": "5616789e91e18e90bbe42285102856823ff8e7c9",
"subdir": True,
"urls": [
{"url": "https://github.com/oracle/graal", "kind": "git"},
Expand Down

0 comments on commit 6294990

Please sign in to comment.