You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/how-to-build.md
+8-2
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ license: "This software is licensed under the Apache License version 2."
13
13
+ Linux or macOS operating system
14
14
+ Git
15
15
+ A Java Development Kit, version 8 to 17, installed in your environment to launch Gradle
16
-
+ Python 3.8, 3.9, 3.10, or 3.11 to build the Gravitino Python client
16
+
+ Python 3.8, 3.9, 3.10, 3.11, or 3.12 to build the Gravitino Python client
17
17
+ Optionally, Docker to run integration tests
18
18
19
19
:::info Please read the following notes before trying to build Gravitino.
@@ -59,7 +59,7 @@ license: "This software is licensed under the Apache License version 2."
59
59
60
60
The `./gradlew build` command builds all the Gravitino components, including the Gravitino server, Java and Python clients, Trino and Spark connectors, and more.
61
61
62
-
For the Python client, the `./gradlew build` command builds the Python client with Python 3.8 by default. If you want to use Python 3.9, 3.10, or 3.11 to build, please modify the property `pythonVersion` to 3.9, 3.10, or 3.11 in the `gradle.properties` file, or specify the version with `-P` like:
62
+
For the Python client, the `./gradlew build` command builds the Python client with Python 3.8 by default. If you want to use Python 3.9, 3.10, 3.11, or 3.12 to build, please modify the property `pythonVersion` to 3.9, 3.10, 3.11, or 3.12 in the `gradle.properties` file, or specify the version with `-P` like:
63
63
64
64
```shell
65
65
./gradlew build -PpythonVersion=3.9
@@ -77,6 +77,12 @@ license: "This software is licensed under the Apache License version 2."
77
77
./gradlew build -PpythonVersion=3.11
78
78
```
79
79
80
+
Or:
81
+
82
+
```shell
83
+
./gradlew build -PpythonVersion=3.12
84
+
```
85
+
80
86
If you want to build a module on its own, like the Spark connector, you can use Gradle to build a module with a specific name, like so:
0 commit comments