Skip to content
Snippets Groups Projects
Commit 048ee435 authored by Vincent Texier's avatar Vincent Texier
Browse files

[fix] #59 fix Python version in gitlab-ci

use Python 3.6.4
parent ecba0bec
No related branches found
No related tags found
No related merge requests found
Pipeline #7602 passed
...@@ -6,7 +6,7 @@ stages: ...@@ -6,7 +6,7 @@ stages:
- publish_doc - publish_doc
variables: variables:
PYENV_PYTHON_VERSION: 3.5.5 PYENV_PYTHON_VERSION: 3.6.4
image: registry.duniter.org/docker/python3/duniterpy-builder:0.0.4 image: registry.duniter.org/docker/python3/duniterpy-builder:0.0.4
...@@ -57,7 +57,6 @@ format: ...@@ -57,7 +57,6 @@ format:
- .changes - .changes
stage: format stage: format
script: script:
- pyenv shell 3.6.4 # black install and run needs python 3.6.x minimum
- pip install -r requirements_dev.txt - pip install -r requirements_dev.txt
- make check-format - make check-format
...@@ -76,7 +75,6 @@ check: ...@@ -76,7 +75,6 @@ check:
- .changes - .changes
stage: test stage: test
script: script:
- pyenv shell 3.6.4 # black install needs python 3.6.x minimum
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install -r requirements_dev.txt - pip install -r requirements_dev.txt
- make mypy - make mypy
...@@ -125,7 +123,6 @@ pages: ...@@ -125,7 +123,6 @@ pages:
- tags - tags
- master - master
script: script:
- pyenv shell 3.6.4 # black install needs python 3.6.x minimum
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install -r requirements_dev.txt - pip install -r requirements_dev.txt
- make docs - make docs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment