Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/user/Embedding-Build-Tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ Add the plugin configuration to your _build.gradle_ file:

```groovy
plugins {
id 'org.graalvm.python' version '25.0.2'
id 'org.graalvm.python' version '25.0.3'
}

graalPy {
Expand Down
10 changes: 5 additions & 5 deletions docs/user/Embedding-Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The fastest way to get started is with GraalPy's Maven archetype, which generate
mvn archetype:generate \
-DarchetypeGroupId=org.graalvm.python \
-DarchetypeArtifactId=graalpy-archetype-polyglot-app \
-DarchetypeVersion=25.0.2
-DarchetypeVersion=25.0.3
```

This generates the following project structure:
Expand Down Expand Up @@ -87,8 +87,8 @@ If you prefer Gradle, here is how to set up a new project with GraalPy embedding
- Include the GraalPy support and the [GraalVM Polyglot API](https://www.graalvm.org/sdk/javadoc/org/graalvm/polyglot/package-summary.html) in the `dependencies` section:

```gradle
implementation("org.graalvm.polyglot:polyglot:25.0.2")
implementation("org.graalvm.python:python-embedding:25.0.2")
implementation("org.graalvm.polyglot:polyglot:25.0.3")
implementation("org.graalvm.python:python-embedding:25.0.3")
```

3. Replace the _App.java_ content with this simple Python embedding example:
Expand Down Expand Up @@ -128,7 +128,7 @@ To use third-party Python packages like NumPy or Requests in your embedded appli
plugins {
id "java"
id "application"
id "org.graalvm.python" version "25.0.2"
id "org.graalvm.python" version "25.0.3"
}

graalPy {
Expand Down Expand Up @@ -171,7 +171,7 @@ GraalPy provides a tool to download the required JAR files directly.
1. Set up your project structure with a directory for dependencies:

```bash
├── lib/ # JAR dependencies
├── lib/ # JAR dependencies
│ └── *.jar
└── src/ # Your Java source files
└── *.java
Expand Down
2 changes: 1 addition & 1 deletion docs/user/Interoperability.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ If you're using Maven with GraalPy, add the JavaScript dependency to your _pom.x
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>js</artifactId>
<version>25.0.2</version>
<version>25.0.3</version>
</dependency>
```

Expand Down
18 changes: 9 additions & 9 deletions docs/user/Standalone-Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ The easiest way to install GraalPy on Linux is to use [Pyenv](https://github.com
# Update pyenv to include latest GraalPy versions (if needed)
pyenv update

# Install GraalPy 25.0.2
pyenv install graalpy-25.0.2
# Install GraalPy 25.0.3
pyenv install graalpy-25.0.3

# Use GraalPy for the current shell session
pyenv shell graalpy-25.0.2
pyenv shell graalpy-25.0.3
```

#### Manual Installation (Linux)
Expand All @@ -76,11 +76,11 @@ pyenv shell graalpy-25.0.2
Using Pyenv (recommended):

```bash
# Install GraalPy 25.0.2
pyenv install graalpy-25.0.2
# Install GraalPy 25.0.3
pyenv install graalpy-25.0.3

# Use GraalPy for the current shell session
pyenv shell graalpy-25.0.2
pyenv shell graalpy-25.0.3
```

#### Manual Installation (macOS)
Expand All @@ -92,7 +92,7 @@ pyenv shell graalpy-25.0.2
```bash
sudo xattr -r -d com.apple.quarantine /path/to/graalpy
# For example:
sudo xattr -r -d com.apple.quarantine ~/.pyenv/versions/graalpy-25.0.2
sudo xattr -r -d com.apple.quarantine ~/.pyenv/versions/graalpy-25.0.3
```

3. Extract and add it to your `PATH` environment variable:
Expand Down Expand Up @@ -136,10 +136,10 @@ The recommended way to use GraalPy is with [venv](https://docs.python.org/3/libr

```bash
# Create a virtual environment
graalpy -m venv ~/.virtualenvs/graalpy-25.0.2
graalpy -m venv ~/.virtualenvs/graalpy-25.0.3

# Activate the environment
source ~/.virtualenvs/graalpy-25.0.2/bin/activate
source ~/.virtualenvs/graalpy-25.0.3/bin/activate
```

### Installing Packages
Expand Down
Loading