graalpython icon indicating copy to clipboard operation
graalpython copied to clipboard

A Python 3 implementation built on GraalVM

Results 71 graalpython issues
Sort by recently updated
recently updated
newest added

The way to get GraalPy's version should be `sys.implementation.version`, but for some reason GraalPy 24.1.0 returns `sys.version_info` instead (3.11.7.alpha), which isn't helpful. This [is supposed](https://docs.python.org/3/library/sys.html#sys.implementation) to be the implementation version....

i am trying to realize debug function via --dap, i start "graalpy --dap test.py" in a subprocess and communicate by socket, but i can not set breakpoints. I follow the...

I am sure this is a well known behavior but these days to not expect a terminal to support modern VT features feels bad. On Windows this is provided by...

**Describe the bug** Unable to import talib - not sure what changed, but now i'm getting these errors: ![Image](https://github.com/user-attachments/assets/293676f3-e0c5-495f-a1e5-65dd250b152e) **To Reproduce** Steps to reproduce the behavior: 1. Install dependencies for...

Currently, specifying Python dependencies from Gradle [seems](https://www.graalvm.org/python/#getting-started) to work like: ``` plugins { id("org.graalvm.python") version "24.1.1" } graalPy { packages = setOf("pyfiglet==1.0.2") } ``` As a Gradle user, I'd expect...

### TL;DR We plan to provide a tool for generating Java interfaces for Python packages, providing a more seamless and user-friendly experience for creating Java applications that leverage Python packages....

enhancement

Tested version: 25.0.0 ea.04 (CE and Oracle JVMs) (apologies for the length in advance) We are running an experiment to investigate whether we can replace or augment our embedded Python...

Hi all, I was trying to use openpyxl to create some Excel sheets and got a HostException (which is an NPE): ``` Traceback (most recent call last): File "Unnamed", line...