dependabot-python 0.190.0 → 0.190.1
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/helpers/requirements.txt +2 -2
- data/lib/dependabot/python/file_updater/pip_compile_file_updater.rb +1 -0
- data/lib/dependabot/python/file_updater/poetry_file_updater.rb +1 -0
- data/lib/dependabot/python/update_checker/pip_compile_version_resolver.rb +1 -0
- data/lib/dependabot/python/update_checker/pipenv_version_resolver.rb +1 -0
- data/lib/dependabot/python/update_checker/poetry_version_resolver.rb +1 -0
- 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: 5917477c2b230f16b8adf2bbc978965b4d7a0f4227cb0d8ad112048e8b441631
|
|
4
|
+
data.tar.gz: 65258925be87880a73abda0d22973b2b261b7fbc715ad11a4c47282a35799a04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e1322d26a9b9f1d44c1265f8deab747a7bc0ac1a527f4d50e43e7988a1eb11a6c90ba9c441a2b2ed2ee9d8cfa87ddd1990ff26ed8751c067dab793340fc4a64
|
|
7
|
+
data.tar.gz: f3c936af5d6bec1e925161c4b58c8fe4e148b69ae33bdb0fcba13a432262c777a64038ebd1ebb817ae35569f56a4373645c3ffdd172f1b8512a55c60a3cec91c
|
data/helpers/requirements.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pip>=21.3.1 # Allow earlier versions to retain python 3.6 support
|
|
2
|
-
pip-tools>=6.4.0 # Allow earlier versions to retain python 3.6 support
|
|
1
|
+
pip>=21.3.1,<=22.1.1 # Allow earlier versions to retain python 3.6 support
|
|
2
|
+
pip-tools>=6.4.0,<=6.6.2 # Allow earlier versions to retain python 3.6 support
|
|
3
3
|
flake8==4.0.1
|
|
4
4
|
hashin==0.17.0
|
|
5
5
|
pipenv==2022.4.8
|
|
@@ -223,6 +223,7 @@ module Dependabot
|
|
|
223
223
|
return if run_command("pyenv versions").include?("#{python_version}\n")
|
|
224
224
|
|
|
225
225
|
run_command("pyenv install -s #{python_version}")
|
|
226
|
+
run_command("pyenv exec pip install --upgrade pip")
|
|
226
227
|
run_command("pyenv exec pip install -r "\
|
|
227
228
|
"#{NativeHelpers.python_requirements_path}")
|
|
228
229
|
end
|
|
@@ -178,6 +178,7 @@ module Dependabot
|
|
|
178
178
|
|
|
179
179
|
if python_version && !pre_installed_python?(python_version)
|
|
180
180
|
run_poetry_command("pyenv install -s #{python_version}")
|
|
181
|
+
run_poetry_command("pyenv exec pip install --upgrade pip")
|
|
181
182
|
run_poetry_command("pyenv exec pip install -r"\
|
|
182
183
|
"#{NativeHelpers.python_requirements_path}")
|
|
183
184
|
end
|
|
@@ -313,6 +313,7 @@ module Dependabot
|
|
|
313
313
|
return if run_command("pyenv versions").include?("#{python_version}\n")
|
|
314
314
|
|
|
315
315
|
run_command("pyenv install -s #{python_version}")
|
|
316
|
+
run_command("pyenv exec pip install --upgrade pip")
|
|
316
317
|
run_command("pyenv exec pip install -r"\
|
|
317
318
|
"#{NativeHelpers.python_requirements_path}")
|
|
318
319
|
end
|
|
@@ -323,6 +323,7 @@ module Dependabot
|
|
|
323
323
|
|
|
324
324
|
requirements_path = NativeHelpers.python_requirements_path
|
|
325
325
|
run_command("pyenv install -s #{python_version}")
|
|
326
|
+
run_command("pyenv exec pip install --upgrade pip")
|
|
326
327
|
run_command("pyenv exec pip install -r "\
|
|
327
328
|
"#{requirements_path}")
|
|
328
329
|
end
|
|
@@ -79,6 +79,7 @@ module Dependabot
|
|
|
79
79
|
|
|
80
80
|
if python_version && !pre_installed_python?(python_version)
|
|
81
81
|
run_poetry_command("pyenv install -s #{python_version}")
|
|
82
|
+
run_poetry_command("pyenv exec pip install --upgrade pip")
|
|
82
83
|
run_poetry_command(
|
|
83
84
|
"pyenv exec pip install -r "\
|
|
84
85
|
"#{NativeHelpers.python_requirements_path}"
|
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.190.
|
|
4
|
+
version: 0.190.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-05-
|
|
11
|
+
date: 2022-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dependabot-common
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.190.
|
|
19
|
+
version: 0.190.1
|
|
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.190.
|
|
26
|
+
version: 0.190.1
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: debase
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|