dependabot-python 0.196.2 → 0.196.3
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/build +2 -2
- data/helpers/requirements.txt +3 -3
- data/lib/dependabot/python/python_versions.rb +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef3980fbcf89e55a483039cfab07e6e2fab854570f76104da83353b67e1aac35
|
|
4
|
+
data.tar.gz: f17461ee6d6abd086bde985fa7c29684b7bd0c510d2cb101afcaa6c15ed44ba6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5c5fe0994d0cb0ac782f26364f2369240885b9f844380b379361c43277db7c9aa1e87542462a04f7ce50bee4b76ec83879aa2143579996c3d4f461c6d4e5283
|
|
7
|
+
data.tar.gz: 330835671d11f04d975636b45068c5981d8c963426b81c4b2acded5dfb04d0a2c1637e7c019d58fb23e39d240fa32a4585932f6fe537976eee092e4398574ff1
|
data/helpers/build
CHANGED
|
@@ -18,9 +18,9 @@ cp -r \
|
|
|
18
18
|
"$install_dir"
|
|
19
19
|
|
|
20
20
|
cd "$install_dir"
|
|
21
|
-
PYENV_VERSION=3.10.
|
|
21
|
+
PYENV_VERSION=3.10.5 pyenv exec pip install -r "requirements.txt"
|
|
22
22
|
|
|
23
23
|
# Workaround of https://github.com/python-poetry/poetry/issues/3010
|
|
24
24
|
# By default poetry config file is stored under ~/.config/pypoetry
|
|
25
25
|
# and is not bound to any specific Python version
|
|
26
|
-
PYENV_VERSION=3.10.
|
|
26
|
+
PYENV_VERSION=3.10.5 pyenv exec poetry config experimental.new-installer false
|
data/helpers/requirements.txt
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
pip>=21.3.1,<22.1.3 # Allow earlier versions to retain python 3.6 support
|
|
2
|
-
pip-tools>=6.4.0
|
|
2
|
+
pip-tools>=6.4.0,<6.8.1 # 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
|
|
6
6
|
pipfile==0.0.2
|
|
7
|
-
poetry==1.1.
|
|
7
|
+
poetry==1.1.14
|
|
8
8
|
wheel==0.37.1
|
|
9
9
|
|
|
10
10
|
# Some dependencies will only install if Cython is present
|
|
11
|
-
Cython==0.29.
|
|
11
|
+
Cython==0.29.30
|
|
@@ -4,14 +4,14 @@ module Dependabot
|
|
|
4
4
|
module Python
|
|
5
5
|
module PythonVersions
|
|
6
6
|
PRE_INSTALLED_PYTHON_VERSIONS = %w(
|
|
7
|
-
3.10.
|
|
7
|
+
3.10.5
|
|
8
8
|
).freeze
|
|
9
9
|
|
|
10
10
|
# Due to an OpenSSL issue we can only install the following versions in
|
|
11
11
|
# the Dependabot container.
|
|
12
12
|
SUPPORTED_VERSIONS = %w(
|
|
13
|
-
3.10.4 3.10.3 3.10.2 3.10.1 3.10.0
|
|
14
|
-
3.9.12 3.9.11 3.9.10 3.9.9 3.9.8 3.9.7 3.9.6 3.9.5 3.9.4 3.9.2 3.9.1 3.9.0
|
|
13
|
+
3.10.5 3.10.4 3.10.3 3.10.2 3.10.1 3.10.0
|
|
14
|
+
3.9.13 3.9.12 3.9.11 3.9.10 3.9.9 3.9.8 3.9.7 3.9.6 3.9.5 3.9.4 3.9.2 3.9.1 3.9.0
|
|
15
15
|
3.8.13 3.8.12 3.8.11 3.8.10 3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 3.8.2 3.8.1 3.8.0
|
|
16
16
|
3.7.13 3.7.12 3.7.11 3.7.10 3.7.9 3.7.8 3.7.7 3.7.6 3.7.5 3.7.4 3.7.3 3.7.2 3.7.1 3.7.0
|
|
17
17
|
3.6.15 3.6.14 3.6.13 3.6.12 3.6.11 3.6.10 3.6.9 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3
|
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.196.
|
|
4
|
+
version: 0.196.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-07-12 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.196.
|
|
19
|
+
version: 0.196.3
|
|
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.196.
|
|
26
|
+
version: 0.196.3
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: debase
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -128,14 +128,14 @@ dependencies:
|
|
|
128
128
|
requirements:
|
|
129
129
|
- - "~>"
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version: 1.
|
|
131
|
+
version: 1.31.2
|
|
132
132
|
type: :development
|
|
133
133
|
prerelease: false
|
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
135
135
|
requirements:
|
|
136
136
|
- - "~>"
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: 1.
|
|
138
|
+
version: 1.31.2
|
|
139
139
|
- !ruby/object:Gem::Dependency
|
|
140
140
|
name: ruby-debug-ide
|
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|