Skip to content

Commit

Permalink
change default python version and drop py2
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Jun 11, 2020
1 parent 3af42a0 commit bf7c475
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['2.7', '3.6']
python-version: ['3.6']
tox-action:
- lint
- lint_docs
Expand Down
2 changes: 1 addition & 1 deletion planemo/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def galaxy_python_version():
'--galaxy_python_version',
use_global_config=True,
default=None,
type=click.Choice(['2', '2.7', '3', '3.5', '3.6', '3.7', '3.8']),
type=click.Choice(['3', '3.5', '3.6', '3.7', '3.8']),
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 @@ -9,7 +9,7 @@
from galaxy.tool_util.deps.commands import which


DEFAULT_PYTHON_VERSION = os.environ.get("PLANEMO_DEFAULT_PYTHON_VERSION", "2.7")
DEFAULT_PYTHON_VERSION = os.environ.get("PLANEMO_DEFAULT_PYTHON_VERSION", "3.6")


def create_and_exit(virtualenv_path, **kwds):
Expand Down

0 comments on commit bf7c475

Please sign in to comment.