dependabot-python 0.95.60 → 0.95.61
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_updater/pip_compile_file_updater.rb +3 -1
- data/lib/dependabot/python/file_updater/pipfile_file_updater.rb +3 -1
- data/lib/dependabot/python/update_checker/pip_compile_version_resolver.rb +3 -1
- data/lib/dependabot/python/update_checker/pipfile_version_resolver.rb +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 067c35225b3413e575de6fb56f91c1939ffab5f22f44bdc707fb37c39d587b95
|
|
4
|
+
data.tar.gz: d1586fd5bfabb5b2c2f320e0f8f790bc1c79e526df25229b5f8368a10336f253
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 777260be1a57d2fefab5424f777d3c92ae5e1d773c2c67b5136f3c74b6f05760848e314bfce4f622623838a7694dedc68c57d94a87bcc80f1b03ca62a2723ca5
|
|
7
|
+
data.tar.gz: 8bfa3a01610722200900fe9da6614927834aec2470fff0e85c904096844215128548d643f4e6e42411efb95f296191fdd7f90947feee68544d6492e92fcf407f
|
|
@@ -216,7 +216,9 @@ module Dependabot
|
|
|
216
216
|
end
|
|
217
217
|
|
|
218
218
|
def install_required_python
|
|
219
|
-
|
|
219
|
+
if run_command("pyenv versions").include?("#{python_version}\n")
|
|
220
|
+
return
|
|
221
|
+
end
|
|
220
222
|
|
|
221
223
|
run_command("pyenv install -s #{python_version}")
|
|
222
224
|
run_command("pyenv exec pip install -r " + \
|
|
@@ -323,7 +323,9 @@ module Dependabot
|
|
|
323
323
|
nil
|
|
324
324
|
end
|
|
325
325
|
|
|
326
|
-
|
|
326
|
+
if run_command("pyenv versions").include?("#{python_version}\n")
|
|
327
|
+
return
|
|
328
|
+
end
|
|
327
329
|
|
|
328
330
|
requirements_path = NativeHelpers.python_requirements_path
|
|
329
331
|
run_command("pyenv install -s #{python_version}")
|
|
@@ -233,7 +233,9 @@ module Dependabot
|
|
|
233
233
|
end
|
|
234
234
|
|
|
235
235
|
def install_required_python
|
|
236
|
-
|
|
236
|
+
if run_command("pyenv versions").include?("#{python_version}\n")
|
|
237
|
+
return
|
|
238
|
+
end
|
|
237
239
|
|
|
238
240
|
run_command("pyenv install -s #{python_version}")
|
|
239
241
|
run_command("pyenv exec pip install -r " + \
|
|
@@ -276,7 +276,9 @@ module Dependabot
|
|
|
276
276
|
nil
|
|
277
277
|
end
|
|
278
278
|
|
|
279
|
-
|
|
279
|
+
if run_command("pyenv versions").include?("#{python_version}\n")
|
|
280
|
+
return
|
|
281
|
+
end
|
|
280
282
|
|
|
281
283
|
requirements_path = NativeHelpers.python_requirements_path
|
|
282
284
|
run_command("pyenv install -s #{python_version}")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-python
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.95.
|
|
4
|
+
version: 0.95.61
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.95.
|
|
19
|
+
version: 0.95.61
|
|
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.95.
|
|
26
|
+
version: 0.95.61
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: byebug
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|