Skip to content

Commit

Permalink
Merge pull request #46 from tisnik/fix-issue-35
Browse files Browse the repository at this point in the history
Install Python 3.6 in all three CI jobs
  • Loading branch information
tisnik authored May 14, 2019
2 parents 8f31c77 + 0bd4523 commit 61e964f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cico_run_pydoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ex
prep() {
yum -y update
yum -y install epel-release
yum -y install python34 python34-virtualenv which
yum -y install python36 python36-virtualenv which
}

prep
Expand Down
2 changes: 1 addition & 1 deletion cico_run_pylint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ex
prep() {
yum -y update
yum -y install epel-release
yum -y install python34 python34-virtualenv which
yum -y install python36 python36-virtualenv which
}

# this script is copied by CI, we don't need it
Expand Down
4 changes: 2 additions & 2 deletions cico_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ load_jenkins_vars() {

prep() {
yum -y update
yum -y install git which epel-release python34-virtualenv
yum -y install python34-devel python34-pip
yum -y install git which epel-release python36-virtualenv
yum -y install python36-devel python36-pip
yum -y install gcc
pip3 install virtualenv
}
Expand Down

0 comments on commit 61e964f

Please sign in to comment.