Skip to content

Commit 332e8e1

Browse files
committed
[GR-40216] let pip choose our patched versions if possible
1 parent 5e2c784 commit 332e8e1

File tree

12 files changed

+138
-36
lines changed

12 files changed

+138
-36
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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 22.3.0
7+
* Rename GraalPython to GraalPy. This change also updates the launchers we ship to include symlinks from `python` and `python3` to `graalpy`, for better integration with other tools.
8+
* Updated our pip support to automatically choose the best version for known packages. You can use `pip install pandas`, and pip will select the versions of pandas and numpy that we test in the GraalPy CI.
9+
610
## Version 22.2.0
711
* Updated to HPy version 0.0.4, which adds support for the finished HPy port of Kiwi, and the in-progress ports of Matplotlib and NumPy.
812
* Added support for aarch64 on both macOS and Linux.

graalpython/lib-graalpython/patches/Cython/sdist/Cython-0.29.13.patch

Whitespace-only changes.

graalpython/lib-graalpython/patches/SecretStorage/sdist/SecretStorage-3.3.1.patch

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/setup.py b/setup.py
2+
index ba88c733f..e4db40429 100644
3+
--- a/setup.py
4+
+++ b/setup.py
5+
@@ -45,6 +45,7 @@
6+
7+
min_cython_ver = "0.28.2"
8+
try:
9+
+ raise ImportError
10+
import Cython
11+
12+
ver = Cython.__version__

graalpython/lib-graalpython/patches/setuptools/whl/setuptools.patch

Whitespace-only changes.

graalpython/lib-graalpython/patches/wheel/whl/wheel.patch

Whitespace-only changes.

0 commit comments

Comments
 (0)