Skip to content

Commit 0f25a66

Browse files
committed
[GR-46843] Python standalones should have the right file and root dir name
1 parent 349135f commit 0f25a66

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
This changelog summarizes major changes between GraalVM versions of the Python
44
language runtime. The main focus is on user-observable behavior of the engine.
55

6+
## Version 23.1.0
7+
* Oracle GraalPy standalones (also known as GraalPy Enterprise) are now available under GFTC. The community builds published on Github have been renamed to `graalpy-community-<version>-<os>-<arch>.tar.gz`.
8+
69
## Version 23.0.0
710
* Update `numpy` and `pandas` versions, add support for `scipy` and `scikit_learn` with `ginstall`. This automatically applies some fixes that make it possible to use these new versions with GraalPy.
811
* Update language version and standard library to 3.10.8, making it compatible with more recent modules and packages.

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2035,7 +2035,8 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
20352035
short_name='pyn',
20362036
installable_id='python',
20372037
dir_name='python',
2038-
standalone_dir_name='graalpy-<version>-<graalvm_os>-<arch>',
2038+
standalone_dir_name='graalpy-community-<version>-<graalvm_os>-<arch>',
2039+
standalone_dir_name_enterprise='graalpy-<version>-<graalvm_os>-<arch>',
20392040
license_files=[],
20402041
third_party_license_files=[],
20412042
dependencies=[

0 commit comments

Comments
 (0)