tree: 18c5a3f154931c0635dacb13c024c83d6a05fcf5 [path history] [tgz]
  1. build.gradle
  2. python_installer.sh
  3. README.md
  4. stale_dataflow_jobs_cleaner.sh
  5. stale_dataflow_prebuilt_image_cleaner.sh
.test-infra/tools/README.md

PLEASE update this file if you add a new tool or update an existing one

Tools

Python installer

It is a tool that installs pyenv and its dependencies, as well as different versions of python through pyenv. This tool installs pyenv and the different versions of python only for the user running the script.

Use

To use the tool, they only have to download the script and execute it with the following command.

bash ./python_installer.sh

Modification

If you want to modify the python versions to install, you must add/remove the versions within that are defined within the python_versions_arr variable. Example:

  • Original
python_versions_arr=("3.6.13" "3.7.10" "3.8.9" "3.9.4")
  • Change
python_versions_arr=("3.6.13" "3.7.10" "3.9.0" "3.10.2")