Skip to content

Commit 5e61ee2

Browse files
committed
Use graalpy instead of graalpython
(cherry picked from commit 42fad09)
1 parent 64df1dd commit 5e61ee2

File tree

7 files changed

+14
-18
lines changed

7 files changed

+14
-18
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The project website at [https://www.graalvm.org/][website] describes how to [get
88

99
## Documentation
1010

11-
Please refer to the [GraalVM website for documentation][docs]. You can find most of the documentation sources in the [`docs/`](docs/) directory in the same hierarchy as displayed on the website. Additional documentation including developer instructions for individual components can be found in corresponding `docs/` sub-directories. The documentation for the Truffle framework, for example, is in [`truffle/docs/`](truffle/docs/). This also applies to languages, tools, and other components maintained in [related repositories](#related-repositories).
11+
Please refer to the [GraalVM website for documentation][docs]. You can find most of the documentation sources in the [_docs/_](docs/) directory in the same hierarchy as displayed on the website. Additional documentation including developer instructions for individual components can be found in corresponding _docs/_ sub-directories. The documentation for the Truffle framework, for example, is in [_truffle/docs/_](truffle/docs/). This also applies to languages, tools, and other components maintained in [related repositories](#related-repositories).
1212

1313
## Get Support
1414

@@ -44,7 +44,7 @@ Name | Description
4444
------------ | -------------
4545
[FastR] | Implementation of the R language.
4646
[GraalJS] | Implementation of JavaScript and Node.js.
47-
[GraalPython] | Implementation of the Python language.
47+
[GraalPy] | Implementation of the Python language.
4848
[GraalVM Demos][graalvm-demos] | Several example applications illustrating GraalVM capabilities.
4949
[Native Build Tools][native-build-tools] | Build tool plugins for GraalVM Native Image.
5050
[SimpleLanguage] | A simple example language built with the Truffle framework.
@@ -73,13 +73,13 @@ Component(s) | License
7373
[badge-yt]: https://img.shields.io/badge/YouTube-subscribe-active?logo=youtube
7474
[community]: https://www.graalvm.org/community/
7575
[contributors]: https://www.graalvm.org/community/contributors/
76-
[docs]: https://www.graalvm.org/docs/introduction/
76+
[docs]: https://www.graalvm.org/docs/
7777
[downloads]: https://www.graalvm.org/downloads/
7878
[fastr]: https://github.com/oracle/fastr
7979
[gate]: https://github.com/oracle/graal/actions/workflows/main.yml
8080
[getting-started]: https://www.graalvm.org/docs/getting-started/
8181
[graaljs]: https://github.com/oracle/graaljs
82-
[graalpython]: https://github.com/oracle/graalpython
82+
[graalpy]: https://github.com/oracle/graalpython
8383
[graalvm-demos]: https://github.com/graalvm/graalvm-demos
8484
[graalvm-sdk]: https://www.graalvm.org/sdk/javadoc/
8585
[issues]: https://github.com/oracle/graal/issues

docs/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ GraalVM languages implementations are being developed and tested in separate fro
1212

1313
* [GraalJS](https://github.com/oracle/graaljs/tree/master/docs/user) - JavaScript and Node.js
1414
* [FastR](https://github.com/oracle/fastr/tree/master/documentation/user) - R
15-
* [GraalPython](https://github.com/oracle/graalpython/tree/master/docs/user) - Python
15+
* [GraalPy](https://github.com/oracle/graalpython/tree/master/docs/user) - Python
1616
* [TruffleRuby](https://github.com/oracle/truffleruby/tree/master/doc/user) - Ruby
1717

1818
To update the documentation:
@@ -27,8 +27,6 @@ To update the documentation:
2727
5. Sign the [Oracle Contributor Agreement](https://oca.opensource.oracle.com/)
2828
6. Watch your PR for pipeline results
2929

30-
31-
3230
A member from the GraalVM project team will review your PR and merge as appropriate.
3331
There is a CI pipeline which will pick up your change once merged to the master branch, and publish on the website.
3432

docs/getting-started/graalvm-community/get-started-graalvm-community.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@ The support is not available by default, but you can quickly add it to GraalVM w
179179
gu install python
180180
```
181181

182-
It installs the `graalpython` launcher. Check the version, and you can already run Python programs:
182+
It installs the `graalpy` launcher. Check the version, and you can already run Python programs:
183183
```shell
184-
$GRAALVM_HOME/bin/graalpython --version
184+
$GRAALVM_HOME/bin/graalpy --version
185185
```
186186

187187
```shell
188-
$GRAALVM_HOME/bin/graalpython
188+
$GRAALVM_HOME/bin/graalpy
189189
...
190190
>>> 1 + 2
191191
3
@@ -294,7 +294,6 @@ gu install native-image
294294

295295
The `HelloWorld` example from above is used here to demonstrate how to generate a native executable:
296296
```java
297-
// HelloWorld.java
298297
public class HelloWorld {
299298
public static void main(String[] args) {
300299
System.out.println("Hello, World!");

docs/getting-started/graalvm-enterprise/get-started-graalvm-enterprise.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,13 @@ The support is not available by default, but you can quickly add it to GraalVM w
185185
gu install python
186186
```
187187

188-
It installs the `graalpython` launcher. Check the version, and you can already run Python programs:
188+
It installs the `graalpy` launcher. Check the version, and you can already run Python programs:
189189
```shell
190-
$GRAALVM_HOME/bin/graalpython --version
190+
$GRAALVM_HOME/bin/graalpy --version
191191
```
192192

193193
```shell
194-
$GRAALVM_HOME/bin/graalpython
194+
$GRAALVM_HOME/bin/graalpy
195195
...
196196
>>> 1 + 2
197197
3
@@ -294,7 +294,6 @@ gu install native-image
294294

295295
The `HelloWorld` example from above is used here to demonstrate how to generate a native executable:
296296
```java
297-
// HelloWorld.java
298297
public class HelloWorld {
299298
public static void main(String[] args) {
300299
System.out.println("Hello, World!");

docs/reference-manual/polyglot-programming.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ tab5type="python" tab5id="python_to_llvm" tab5name="LLVM" tab5path="polyglot_ref
124124
Run:
125125

126126
```shell
127-
graalpython --polyglot --jvm polyglot.py
127+
graalpy --polyglot --jvm polyglot.py
128128
42
129129
```
130130

truffle/docs/Languages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The following language implementations exist already:
1212
* [Espresso](https://github.com/oracle/graal/tree/master/espresso), a meta-circular Java bytecode interpreter. *
1313
* [FastR](https://github.com/graalvm/fastr), an implementation of GNU R. *
1414
* [Graal.js](https://github.com/graalvm/graaljs), an ECMAScript 2020 compliant JavaScript implementation. *
15-
* [Graal.Python](https://github.com/graalvm/graalpython), an early-stage implementation of Python. *
15+
* [GraalPy](https://github.com/graalvm/graalpython), an early-stage implementation of Python. *
1616
* [grCUDA](https://github.com/NVIDIA/grcuda), a polyglot CUDA integration.
1717
* [SimpleLanguage](https://github.com/graalvm/simplelanguage), a toy language implementation to demonstrate Truffle features.
1818
* [SOMns](https://github.com/smarr/SOMns), a Newspeak implementation for Concurrency Research.

vm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Note that the suites listed in:
8181
Installable components for the Graal Updater (`gu`) are built alongside the GraalVM for languages other than JS.
8282
For example:
8383
```bash
84-
$ env FASTR_RELEASE=true mx --dynamicimports fastr,truffleruby,graalpython,/substratevm build
84+
$ env FASTR_RELEASE=true mx --dynamicimports fastr,truffleruby,graalpy,/substratevm build
8585
```
8686
creates:
8787
- a GraalVM image which includes the base CE components plus FastR, TruffleRuby, and Graal.Python

0 commit comments

Comments
 (0)