You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ language runtime. The main focus is on user-observable behavior of the engine.
13
13
* This means all Python methods of these types are available on the corresponding foreign objects, which behave as close as possible as if they were Python objects.
14
14
* See [the documentation](https://github.com/oracle/graalpython/blob/master/docs/user/Interoperability.md#interacting-with-foreign-objects-from-python-scripts) for more information.
15
15
* Remove support for running with Sulong managed both in embeddings as well as through the `graalpy-managed` launcher.
16
+
* Rewrite wheelbuilder to be easier to use and contribute to. This version is now the same we run internally to build publishable wheels for some platforms we support, so the community can build the same wheels on their own hardware easily if desired.
16
17
17
18
## Version 24.1.0
18
19
* GraalPy is now considered stable for pure Python workloads. While many workloads involving native extension modules work, we continue to consider them experimental. You can use the command-line option `--python.WarnExperimentalFeatures` to enable warnings for such modules at runtime. In Java embeddings the warnings are enabled by default and you can suppress them by setting the context option 'python.WarnExperimentalFeatures' to 'false'.
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/common/CExtContext.java
Stringmessage = "Loading C extension module %s from '%s'. Support for the Python C API is considered experimental.";
310
311
if (!runViaLauncher) {
311
312
message += " See https://www.graalvm.org/latest/reference-manual/python/Native-Extensions/#embedding-limitations for the limitations. " +
312
-
"You can suppress this warning by setting the context option 'python.WarnExperimentalFeatures' to 'false'";
313
+
"You can suppress this warning by setting the context option 'python.WarnExperimentalFeatures' to 'false'.";
314
+
}
315
+
if (PythonOS.getPythonOS() == PythonOS.PLATFORM_WIN32) {
316
+
message += " If loading binary wheels fails, please make sure you installed the latest Microsoft Visual C++ Redistributable from https://aka.ms/vs/17/release/vc_redist.x64.exe.";
0 commit comments