@@ -84,7 +84,7 @@ Whether deployed in a virtual filesystem or an external directory, its contents
8484specified in the plugin configuration.
8585
8686## 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,
8888Python does not enforce strict versioning of dependencies, which can result in problems if a third-party package or one of its transitive
8989dependencies is unexpectedly updated to a newer version, leading to unforeseen behavior.
9090
@@ -158,7 +158,7 @@ Remember to use the appropriate `GraalPyResources` API to create the Context. Th
158158 ```
159159
160160### 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 ` .
162162``` bash
163163$ mvn org.graalvm.python:graalpy-maven-plugin:lock-packages
164164```
@@ -227,7 +227,7 @@ dependency `org.graalvm.python:python` to the community build: `org.graalvm.pyth
227227 }
228228 ```
229229### 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 ` .
231231``` bash
232232$ gradle graalPyLockPackages
233233```
0 commit comments