Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion planemo/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def galaxy_python_version():
"--galaxy_python_version",
use_global_config=True,
default=None,
type=click.Choice(["3", "3.7", "3.8", "3.9", "3.10", "3.11"]),
type=click.Choice(["3.8", "3.9", "3.10", "3.11", "3.12"]),
Comment thread
bernt-matthias marked this conversation as resolved.
Outdated
help="Python version to start Galaxy under",
)

Expand Down
2 changes: 1 addition & 1 deletion planemo/virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from galaxy.util.commands import which

DEFAULT_PYTHON_VERSION = os.environ.get("PLANEMO_DEFAULT_PYTHON_VERSION", "3")
DEFAULT_PYTHON_VERSION = os.environ.get("PLANEMO_DEFAULT_PYTHON_VERSION", "3.12")


def create_command(virtualenv_path: str, galaxy_python_version: Optional[str] = None) -> str:
Expand Down