File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,11 @@ Options for controlling where certain Galaxy components are placed on the filesy
251
251
252
252
- `galaxy_venv_dir` (default : ` <galaxy_server_dir>/.venv` ): The role will create a [virtualenv][virtualenv] from which
253
253
Galaxy will run, this controls where the virtualenv will be placed.
254
- - `galaxy_venv_python` (default : ` 2.7` ): The python version to use when creating the virtualenv. Must be either 2.7, or 3.5 or higher.
254
+ - `galaxy_virtualenv_command` : (default: `virtualenv`): The command used to create Galaxy's virtualenv. Set to `pyvenv`
255
+ to use Python 3 on Galaxy >= 20.01.
256
+ - `galaxy_virtualenv_python` : (default: python of first `virtualenv` or `python` command on `$PATH`): The python binary
257
+ to use when creating the virtualenv. For Galaxy < 20.01, use python2.7 (if it is not the default), for Galaxy >=
258
+ 20.01, use `python3.5` or higher.
255
259
- `galaxy_config_dir` (default : ` <galaxy_server_dir>` ): Directory that will be used for "static" configuration files.
256
260
- `galaxy_mutable_config_dir` (default : ` <galaxy_server_dir>` ): Directory that will be used for "mutable" configuration
257
261
files, must be writable by the user running Galaxy.
Original file line number Diff line number Diff line change 10
10
virtualenv : " {{ galaxy_venv_dir }}"
11
11
extra_args : " {{ pip_extra_args | default('') }}"
12
12
virtualenv_command : " {{ galaxy_virtualenv_command | default(pip_virtualenv_command | default(omit)) }}"
13
- virtualenv_python : " python {{ galaxy_venv_python | default('2.7' ) }}"
13
+ virtualenv_python : " {{ galaxy_virtualenv_python | default(omit ) }}"
14
14
environment :
15
15
VIRTUAL_ENV : " {{ galaxy_venv_dir }}"
16
16
You can’t perform that action at this time.
0 commit comments