File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This is an early-stage experimental implementation of Python. A primary goal is
4
4
to support SciPy and its constituent libraries. This Python implementation
5
- currently aims to be compatible with Python 3.7 , but it is a long way from
5
+ currently aims to be compatible with Python 3.8 , but it is a long way from
6
6
there, and it is very likely that any Python program that requires any packages
7
7
at all will hit something unsupported. At this point, the Python implementation
8
8
is made available for experimentation and curious end-users.
@@ -79,7 +79,7 @@ cross-language interop. This will hopefully give you an idea how to use it.
79
79
80
80
We are working on a mode that is "mostly compatible" with some of Jython's
81
81
features, minus of course that Jython implements Python 2.7 and we implement
82
- Python 3.7 +. We describe the current status of the compatibility mode
82
+ Python 3.8 +. We describe the current status of the compatibility mode
83
83
[ here] ( docs/user/JYTHON.md ) .
84
84
85
85
### Contributing
Original file line number Diff line number Diff line change 1
1
# Python Implementation for GraalVM
2
2
3
- GraalVM provides an implementation of Python 3.7 . A primary goal of the Python
3
+ GraalVM provides an implementation of Python 3.8 . A primary goal of the Python
4
4
implementation is to support SciPy and its constituent libraries as well as to work
5
5
with other data science and machine learning libraries from the rich Python
6
6
ecosystem. At this point, the Python implementation is made available for
@@ -18,7 +18,7 @@ For GraalVM Enterprise users, the [manual component installation](https://www.gr
18
18
19
19
## Running Python
20
20
21
- GraalVM implementation of Python targets Python 3.7 compatibility. While support
21
+ GraalVM implementation of Python targets Python 3.8 compatibility. While support
22
22
for the Python language is still limited, you can run simple Python scripts or
23
23
commands with the ` graalpython ` binary.
24
24
```
@@ -27,7 +27,7 @@ $ graalpython [options] [-c cmd | filename]
27
27
28
28
If no program file or command is given, you are dropped into a simple REPL.
29
29
30
- GraalVM supports some of the same options as Python 3.7 and some additional
30
+ GraalVM supports some of the same options as Python 3.8 and some additional
31
31
options to control the underlying Python implementation, the GraalVM tools
32
32
and the execution engine. These can be viewed using the following command:
33
33
You can’t perform that action at this time.
0 commit comments