dependabot-python 0.94.3 → 0.94.4
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/lib/dependabot/python/file_fetcher.rb +4 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92983a829db12ed3f8876b930eee9c70f3c0e7ca623ddce5669a90fc8c74c287
|
|
4
|
+
data.tar.gz: b5d803fd11f7c2042fe35a6192c9152b0cf8565c19580e34cae41b77d54cb698
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28f722136ec15baf6d523ef7f9b64d736c5b89873c621964db5cbec39df5459fa62f22e45dabbd1876ce92bcedf1226cfda1e2736e8e1bed45a480893afaf6d8
|
|
7
|
+
data.tar.gz: 3205c9b6c97bcba7be7ee947417a6e92c2e853561a6b1729ad6549418f659015809f072fc129325222675b3733a8f78fe51a996a72e258acbe5d4c823dfee281
|
|
@@ -252,15 +252,16 @@ module Dependabot
|
|
|
252
252
|
end
|
|
253
253
|
return [] if path == "setup.py" && setup_file
|
|
254
254
|
|
|
255
|
-
path_setup_files << fetch_file_from_host(path).
|
|
255
|
+
path_setup_files << fetch_file_from_host(path, fetch_submodules: true).
|
|
256
256
|
tap { |f| f.support_file = true }
|
|
257
257
|
|
|
258
258
|
return path_setup_files unless path.end_with?(".py")
|
|
259
259
|
|
|
260
260
|
begin
|
|
261
261
|
cfg_path = path.gsub(/\.py$/, ".cfg")
|
|
262
|
-
path_setup_files <<
|
|
263
|
-
|
|
262
|
+
path_setup_files <<
|
|
263
|
+
fetch_file_from_host(cfg_path, fetch_submodules: true).
|
|
264
|
+
tap { |f| f.support_file = true }
|
|
264
265
|
rescue Dependabot::DependencyFileNotFound
|
|
265
266
|
# Ignore lack of a setup.cfg
|
|
266
267
|
nil
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-python
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.94.
|
|
4
|
+
version: 0.94.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-02-
|
|
11
|
+
date: 2019-02-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dependabot-core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.94.
|
|
19
|
+
version: 0.94.4
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.94.
|
|
26
|
+
version: 0.94.4
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: byebug
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|