@@ -84,7 +84,7 @@ Whether deployed in a virtual filesystem or an external directory, its contents
84
84
specified in the plugin configuration.
85
85
86
86
## Python Dependency Management
87
- The list of third-party Python packages to be downloaded and installed can be specified in the particular plugin`s configuration. Unfortunately,
87
+ The list of third-party Python packages to be downloaded and installed can be specified in Maven or Gradle plugin configuration. Unfortunately,
88
88
Python does not enforce strict versioning of dependencies, which can result in problems if a third-party package or one of its transitive
89
89
dependencies is unexpectedly updated to a newer version, leading to unforeseen behavior.
90
90
@@ -158,7 +158,7 @@ Remember to use the appropriate `GraalPyResources` API to create the Context. Th
158
158
```
159
159
160
160
### Locking Python Packages
161
- To lock the current state of the installed packages, execute the GraalPy plugin goal ` org.graalvm.python:graalpy-maven-plugin:lock-packages ` .
161
+ To lock the dependency tree of the specified Python packages, execute the GraalPy plugin goal ` org.graalvm.python:graalpy-maven-plugin:lock-packages ` .
162
162
``` bash
163
163
$ mvn org.graalvm.python:graalpy-maven-plugin:lock-packages
164
164
```
@@ -227,7 +227,7 @@ dependency `org.graalvm.python:python` to the community build: `org.graalvm.pyth
227
227
}
228
228
```
229
229
### Locking Python Packages
230
- To lock the current state of declared packages, execute the GraalPy plugin task ` graalPyLockPackages ` .
230
+ To lock the dependency tree of the specified Python packages, execute the GraalPy plugin task ` graalPyLockPackages ` .
231
231
``` bash
232
232
$ gradle graalPyLockPackages
233
233
```
0 commit comments