dependabot-python 0.117.3 → 0.117.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/helpers/build +1 -1
- data/helpers/lib/hasher.py +2 -1
- data/helpers/requirements.txt +1 -1
- data/lib/dependabot/python/python_versions.rb +2 -2
- 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: 460ccbf7dfa4d1108dad42bb721f0b94b92c2a7e256e94b4ca5d3b4193026ab7
|
4
|
+
data.tar.gz: cf50f2aba3bc48063ba68dbfbb80fbdf960344dc182d01ba019771b48423b72f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 678a6c1bed0fb25eb07dd061fe7bd016f26cc84b869c75990b3e4e4645f9741544f57ed673767697693d3948ec4dd1ecf70a569d1f788c3a81656db8095992a9
|
7
|
+
data.tar.gz: 8098b62347f6d3f127c970a74abfc527470575268aac69585c795b910eef951556eb802aabadd252cc584550588c01c679ff46f775a2dcf31524370a122bd99e
|
data/helpers/build
CHANGED
data/helpers/lib/hasher.py
CHANGED
@@ -2,6 +2,7 @@ import hashin
|
|
2
2
|
import json
|
3
3
|
import pipfile
|
4
4
|
from poetry.poetry import Poetry
|
5
|
+
from poetry.factory import Factory
|
5
6
|
|
6
7
|
def get_dependency_hash(dependency_name, dependency_version, algorithm):
|
7
8
|
hashes = hashin.get_package_hashes(
|
@@ -18,6 +19,6 @@ def get_pipfile_hash(directory):
|
|
18
19
|
return json.dumps({ "result": p.hash })
|
19
20
|
|
20
21
|
def get_pyproject_hash(directory):
|
21
|
-
p =
|
22
|
+
p = Factory().create_poetry(directory)
|
22
23
|
|
23
24
|
return json.dumps({ "result": p.locker._get_content_hash() })
|
data/helpers/requirements.txt
CHANGED
@@ -4,13 +4,13 @@ module Dependabot
|
|
4
4
|
module Python
|
5
5
|
module PythonVersions
|
6
6
|
PRE_INSTALLED_PYTHON_VERSIONS = %w(
|
7
|
-
3.8.
|
7
|
+
3.8.2 2.7.17
|
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.8.1 3.8.0 3.7.6 3.7.5 3.7.4 3.7.3 3.7.2 3.7.1 3.7.0
|
13
|
+
3.8.2 3.8.1 3.8.0 3.7.6 3.7.5 3.7.4 3.7.3 3.7.2 3.7.1 3.7.0
|
14
14
|
3.6.9 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3 3.6.2 3.6.1 3.6.0
|
15
15
|
3.5.7 3.5.6 3.5.5 3.5.4 3.5.3
|
16
16
|
2.7.17 2.7.16 2.7.15 2.7.14 2.7.13
|
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.117.
|
4
|
+
version: 0.117.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dependabot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-24 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.117.
|
19
|
+
version: 0.117.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.117.
|
26
|
+
version: 0.117.4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: byebug
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|