Skip to content

Commit b1f738c

Browse files
authored
Merge pull request #25 from codacy/python-3.6.1
Python 3.6.1
2 parents bebc814 + c79d521 commit b1f738c

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

build.sbt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ version in Docker := "1.0"
2727
organization := "com.codacy"
2828

2929
val installAll =
30-
s"""apk --no-cache add bash wget ca-certificates git &&
31-
|apk add --update --no-cache python &&
32-
|apk add --update --no-cache python3 &&
30+
s"""echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories &&
31+
|apk --no-cache add bash wget ca-certificates git &&
32+
|apk --no-cache add python &&
33+
|apk --no-cache add 'python3>3.6.1' &&
3334
|wget "https://bootstrap.pypa.io/get-pip.py" -O /dev/stdout | python &&
3435
|wget "https://bootstrap.pypa.io/get-pip.py" -O /dev/stdout | python3 &&
3536
|python -m pip install django==1.9.2 flask==0.10.1 pylint-flask==0.1 flask-wtf==0.12 --upgrade --ignore-installed --no-cache-dir &&
File renamed without changes.

src/main/resources/docs/description/description.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@
566566
"timeToFix": 20
567567
},
568568
{
569-
"patternId": "R0102",
569+
"patternId": "R1703",
570570
"title": "Simplify if statement",
571571
"description": "Suggest simplification of an if statement, which can be easier to understand after refactoring.",
572572
"timeToFix": 5
File renamed without changes.

0 commit comments

Comments
 (0)