Skip to content

Commit

Permalink
Fix Pip PackageManager for pip 10.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Daniil Kouznetsov <[email protected]>
  • Loading branch information
Vikram Yadav authored and Daniil Kouznetsov committed May 9, 2018
1 parent 931cd1a commit 286f679
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# [5.1.1] / 2018-05-08

# [5.1.1] / 2018-05-08

# [5.1.0] / 2018-04-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get install -y python rebar

# install and update python-pip
RUN apt-get install -y python-pip && \
pip install --upgrade pip
pip install --upgrade pip==10.0.1

# install maven
RUN curl -O http://www-us.apache.org/dist/maven/maven-3/3.5.2/binaries/apache-maven-3.5.2-bin.tar.gz && \
Expand Down
4 changes: 2 additions & 2 deletions bin/license_finder_pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import json
import sys
from pip.req import parse_requirements
from pip.download import PipSession
from pip._internal.req import parse_requirements
from pip._internal.download import PipSession
from pip._vendor import pkg_resources
from pip._vendor.six import print_

Expand Down
2 changes: 1 addition & 1 deletion lib/license_finder/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module LicenseFinder
VERSION = '5.1.1'.freeze
VERSION = '5.2.0'.freeze
end

0 comments on commit 286f679

Please sign in to comment.