Skip to content

Commit

Permalink
Merge pull request fabric8-analytics#30 from tisnik/lock-to-radon-3-0-1
Browse files Browse the repository at this point in the history
Lock to Radon 3.0.1
  • Loading branch information
tisnik authored Feb 4, 2019
2 parents cde11df + e679fc8 commit 09f0e52
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions cico_run_pylint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ prep() {
yum -y install python34 python34-virtualenv which
}

# this script is copied by CI, we don't need it
rm -f env-toolkit

prep
./detect-common-errors.sh
./detect-dead-code.sh
Expand Down
2 changes: 1 addition & 1 deletion measure-cyclomatic-complexity.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function prepare_venv() {
VIRTUALENV=$(which virtualenv-3)
fi

${VIRTUALENV} -p python3 venv && source venv/bin/activate && python3 "$(which pip3)" install radon==2.4.0
${VIRTUALENV} -p python3 venv && source venv/bin/activate && python3 "$(which pip3)" install radon==3.0.1
}

[ "$NOVENV" == "1" ] || prepare_venv || exit 1
Expand Down
2 changes: 1 addition & 1 deletion measure-maintainability-index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function prepare_venv() {
VIRTUALENV=$(which virtualenv-3)
fi

${VIRTUALENV} -p python3 venv && source venv/bin/activate && python3 "$(which pip3)" install radon==2.4.0
${VIRTUALENV} -p python3 venv && source venv/bin/activate && python3 "$(which pip3)" install radon==3.0.1
}

[ "$NOVENV" == "1" ] || prepare_venv || exit 1
Expand Down

0 comments on commit 09f0e52

Please sign in to comment.