bump python to 3.8

This commit is contained in:
acereca 2021-02-12 12:57:19 +01:00
parent 9e7328669b
commit 0067ccf297
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -4,9 +4,9 @@ pipeline {
stage("Setup") { stage("Setup") {
agent any agent any
steps { steps {
sh 'pip install sphinx' sh 'pip3.8 install sphinx'
sh 'pip install pydata-sphinx-theme' sh 'pip3.8 install pydata-sphinx-theme'
sh 'pip install -e .' sh 'pip3.8 install -e .'
sh 'mkdir -p docs/_build' sh 'mkdir -p docs/_build'
} }
} }