Skip to content

Commit 7a107a7

Browse files
timfelolyagplfniephausY-Shcheholskyy
committed
Add GraalPy site
Co-authored-by: Olya Gupalo <[email protected]> Co-authored-by: Fabio Niephaus <[email protected]> Co-authored-by: Yevhen Shcheholskyy <[email protected]>
1 parent 5f3a47a commit 7a107a7

28 files changed

+2528
-164
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ Python.asdl.stamp
7070
*.jfr
7171
.DS_Store
7272

73+
docs/site/_site
7374
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser/antlr/.antlr/
7475
graalpython/lib-python/3/test/data
7576
!graalpython/lib-python/3/test/data/README

README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,20 @@ Refer to our [embedding documentation](https://www.graalvm.org/latest/reference-
5454
<dependency>
5555
<groupId>org.graalvm.polyglot</groupId>
5656
<artifactId>polyglot</artifactId>
57-
<version>24.1.1</version>
57+
<version>24.1.2</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>org.graalvm.polyglot</groupId>
6161
<artifactId>python</artifactId>
62-
<version>24.1.1</version>
62+
<version>24.1.2</version>
6363
<type>pom</type>
6464
</dependency>
6565
```
6666

6767
* Gradle
6868
```kotlin
69-
implementation("org.graalvm.polyglot:polyglot:24.1.1")
70-
implementation("org.graalvm.polyglot:python:24.1.1")
69+
implementation("org.graalvm.polyglot:polyglot:24.1.2")
70+
implementation("org.graalvm.polyglot:python:24.1.2")
7171
```
7272

7373
</details>
@@ -85,12 +85,12 @@ Thanks to our integration with GraalVM Native Image, we can deploy Python applic
8585
* Linux
8686

8787
The easiest way to install GraalPy on Linux is to use [Pyenv](https://github.com/pyenv/pyenv) (the Python version manager).
88-
To install version 24.1.1 using Pyenv, run the following commands:
88+
To install version 24.1.2 using Pyenv, run the following commands:
8989
```bash
90-
pyenv install graalpy-24.1.1
90+
pyenv install graalpy-24.1.2
9191
```
9292
```bash
93-
pyenv shell graalpy-24.1.1
93+
pyenv shell graalpy-24.1.2
9494
```
9595
> NOTE: There will be a delay between GraalPy release and its availability on Pyenv. Make sure to update Pyenv.
9696
@@ -102,12 +102,12 @@ Thanks to our integration with GraalVM Native Image, we can deploy Python applic
102102
* macOS
103103

104104
The easiest way to install GraalPy on macOS is to use [Pyenv](https://github.com/pyenv/pyenv) (the Python version manager).
105-
To install version 24.1.1 using Pyenv, run the following commands:
105+
To install version 24.1.2 using Pyenv, run the following commands:
106106
```bash
107-
pyenv install graalpy-24.1.1
107+
pyenv install graalpy-24.1.2
108108
```
109109
```bash
110-
pyenv shell graalpy-24.1.1
110+
pyenv shell graalpy-24.1.2
111111
```
112112
> NOTE: There will be a delay between GraalPy release and its availability on Pyenv. Make sure to update Pyenv.
113113
@@ -120,20 +120,20 @@ Thanks to our integration with GraalVM Native Image, we can deploy Python applic
120120
```
121121
For example:
122122
```bash
123-
sudo xattr -r -d com.apple.quarantine ~/.pyenv/versions/graalpy-24.1.1
123+
sudo xattr -r -d com.apple.quarantine ~/.pyenv/versions/graalpy-24.1.2
124124
```
125125
3. Uncompress the file and update your `PATH` environment variable to include to the _graalpy-XX.Y.Z-macos-amd64/bin_ (or _graalpy-XX.Y.Z-macos-aarch64/bin_) directory.
126126

127127
* Windows
128128

129129
The Windows support of GraalPy is still experimental, so not all features and packages may be available.
130130
The easiest way to install GraalPy on Windows is to use [Pyenv-win](https://pyenv-win.github.io/pyenv-win/) (the Python version manager for Windows).
131-
To install version 24.1.1 using Pyenv-win, run the following commands:
131+
To install version 24.1.2 using Pyenv-win, run the following commands:
132132
```cmd
133-
pyenv install graalpy-24.1.1-windows-amd64
133+
pyenv install graalpy-24.1.2-windows-amd64
134134
```
135135
```cmd
136-
pyenv shell graalpy-24.1.1-windows-amd64
136+
pyenv shell graalpy-24.1.2-windows-amd64
137137
```
138138
> NOTE: There will be a delay between GraalPy release and its availability on Pyenv. Make sure to update Pyenv.
139139

@@ -179,7 +179,7 @@ To run Jython scripts, you need to use a GraalPy distribution running on the JVM
179179
```
180180
For example:
181181
```bash
182-
sudo xattr -r -d com.apple.quarantine ~/.pyenv/versions/graalpy-24.1.1
182+
sudo xattr -r -d com.apple.quarantine ~/.pyenv/versions/graalpy-24.1.2
183183
```
184184
3. Uncompress the file and update your `PATH` environment variable to include to the _graalpy-jvm-XX.Y.Z-macos-amd64/bin_ (or _graalpy-jvm-XX.Y.Z-macos-aarch64/bin_) directory.
185185
4. Run your scripts with `graalpy --python.EmulateJython`.

ci.jsonnet

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "e7117a989914a1d1a4cf85ffc55ff81ef8a6046d" }
1+
{ "overlay": "49fac12d217e7ee98fbf68fea640bdc5b0f0e7c0" }

docs/site/01-docs.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: docs
3+
title: Documentation
4+
permalink: docs/
5+
---
6+
7+
{% gfm_docs ../user/README.md %}
8+
{% gfm_docs ../user/Python-Runtime.md %}
9+
{% gfm_docs ../user/Performance.md %}
10+
{% gfm_docs ../user/Python-on-JVM.md %}
11+
{% gfm_docs ../user/Native-Images-with-Python.md %}
12+
{% gfm_docs ../user/Python-Standalone-Applications.md %}
13+
{% gfm_docs ../user/Interoperability.md %}
14+
{% gfm_docs ../user/Embedding-Build-Tools.md %}
15+
{% gfm_docs ../user/Embedding-Permissions.md %}
16+
{% gfm_docs ../user/Tooling.md %}
17+
18+
{% copy_assets ../user/assets %}

0 commit comments

Comments
 (0)