license_finder 5.1.1 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Dockerfile +1 -1
- data/bin/license_finder_pip.py +2 -2
- data/lib/license_finder/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e83c5628e135b370df265f0878986cebbfe132108f5dfdab56488e7d6e892bd6
|
|
4
|
+
data.tar.gz: 6aa33792658ecfed8f4722d0e221dd9e1263c41d9c86fde0bb641f695d60d9fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9169b9af952e7713fe628e4a4a54788c84c4f6574bb7f481ac7e4385db3a52f18522aff31c5ae55afe2d79356dd10e986e6c42cd87a202b23ce371bd609df8d1
|
|
7
|
+
data.tar.gz: 8b5224d5a66d9b6603a975e00fbe85cef8194a5c1b529aa95f00672e4aef16c67f85f6fab3e0e3234e2d509a012b50239f6cf3e7d21c9de5ffeba18c3d4183f2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# [5.1.1] / 2018-05-08
|
|
2
|
+
|
|
1
3
|
# [5.1.0] / 2018-04-02
|
|
2
4
|
|
|
3
5
|
### Added
|
|
@@ -571,3 +573,5 @@ Bugfixes:
|
|
|
571
573
|
[5.0.2]: https://github.com/pivotal-legacy/LicenseFinder/compare/v5.0.0...v5.0.2
|
|
572
574
|
[5.0.3]: https://github.com/pivotal-legacy/LicenseFinder/compare/v5.0.2...v5.0.3
|
|
573
575
|
[5.1.0]: https://github.com/pivotal-legacy/LicenseFinder/compare/v5.0.3...v5.1.0
|
|
576
|
+
[5.1.1]: https://github.com/pivotal-legacy/LicenseFinder/compare/v5.1.0...v5.1.1
|
|
577
|
+
[5.1.1]: https://github.com/pivotal-legacy/LicenseFinder/compare/v5.1.0...v5.1.1
|
data/Dockerfile
CHANGED
|
@@ -37,7 +37,7 @@ RUN apt-get install -y python rebar
|
|
|
37
37
|
|
|
38
38
|
# install and update python-pip
|
|
39
39
|
RUN apt-get install -y python-pip && \
|
|
40
|
-
pip install --upgrade pip
|
|
40
|
+
pip install --upgrade pip==10.0.1
|
|
41
41
|
|
|
42
42
|
# install maven
|
|
43
43
|
RUN curl -O http://www-us.apache.org/dist/maven/maven-3/3.5.2/binaries/apache-maven-3.5.2-bin.tar.gz && \
|
data/bin/license_finder_pip.py
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
import json
|
|
4
4
|
import sys
|
|
5
|
-
from pip.req import parse_requirements
|
|
6
|
-
from pip.download import PipSession
|
|
5
|
+
from pip._internal.req import parse_requirements
|
|
6
|
+
from pip._internal.download import PipSession
|
|
7
7
|
from pip._vendor import pkg_resources
|
|
8
8
|
from pip._vendor.six import print_
|
|
9
9
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: license_finder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Collins
|
|
@@ -27,7 +27,7 @@ authors:
|
|
|
27
27
|
autorequire:
|
|
28
28
|
bindir: bin
|
|
29
29
|
cert_chain: []
|
|
30
|
-
date: 2018-05-
|
|
30
|
+
date: 2018-05-09 00:00:00.000000000 Z
|
|
31
31
|
dependencies:
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: bundler
|