Skip to content

Commit ea1a66b

Browse files
committed
[GR-40216] Let pip choose our patched versions if possible
PullRequest: graalpython/2380
2 parents 5e2c784 + d34a5b6 commit ea1a66b

File tree

13 files changed

+149
-37
lines changed

13 files changed

+149
-37
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.

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "e746098f49cab4e749d7c000b4a1650b00cc5aed" }
1+
{ "overlay": "fc89d52c97c32de4d157f9ca0164297ca54a7e8c" }

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.

0 commit comments

Comments
 (0)