dependabot-python 0.247.0 → 0.248.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/helpers/lib/parser.py +2 -0
- data/helpers/requirements.txt +2 -0
- data/helpers/run.py +2 -0
- data/lib/dependabot/python/language_version_manager.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 165e432faa4b40b16ac49232c58dbe9f6a1187bf063cf8c347ed683515f06577
|
4
|
+
data.tar.gz: 0b22f327bbab4b6bc752b1784c02f756000aa21b043a049e34b445c820526056
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dc8379104510deef1670b51c960a6a806263cfb47298447c550dd2b9d5b140f3e5f5f981e7038a0b18d3eee3e455e8ae52d3dfca63f5e3d5f9c403b3c270188
|
7
|
+
data.tar.gz: d09814b8cbf11cad971a7188ae7db79772f5426bcdbaac9ccde586b5486695d251723a20430beb9f6e705cfce7622ef0c78150ee97f2648320f316ed4c5723a3
|
data/helpers/lib/parser.py
CHANGED
@@ -13,6 +13,8 @@ from pip._internal.req.constructors import (
|
|
13
13
|
)
|
14
14
|
|
15
15
|
from packaging.requirements import InvalidRequirement, Requirement
|
16
|
+
# TODO: Replace 3p package `toml` with 3.11's new stdlib `tomllib` once we drop
|
17
|
+
# support for Python 3.10.
|
16
18
|
import toml
|
17
19
|
|
18
20
|
# Inspired by pips internal check:
|
data/helpers/requirements.txt
CHANGED
@@ -5,6 +5,8 @@ hashin==0.17.0
|
|
5
5
|
pipenv==2023.11.17
|
6
6
|
pipfile==0.0.2
|
7
7
|
poetry==1.7.1
|
8
|
+
# TODO: Replace 3p package `toml` with 3.11's new stdlib `tomllib` once we drop support for Python 3.10.
|
9
|
+
toml==0.10.2
|
8
10
|
|
9
11
|
# Some dependencies will only install if Cython is present
|
10
12
|
Cython==3.0.8
|
data/helpers/run.py
CHANGED
@@ -6,6 +6,8 @@ from lib import parser, hasher
|
|
6
6
|
if __name__ == "__main__":
|
7
7
|
args = json.loads(sys.stdin.read())
|
8
8
|
|
9
|
+
# TODO Python 3.10 added native switch statements, so switch this if/elif
|
10
|
+
# to that once we drop support for 3.9.
|
9
11
|
if args["function"] == "parse_requirements":
|
10
12
|
print(parser.parse_requirements(args["args"][0]))
|
11
13
|
elif args["function"] == "parse_setup":
|
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.
|
4
|
+
version: 0.248.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dependabot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-21 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.
|
19
|
+
version: 0.248.0
|
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.
|
26
|
+
version: 0.248.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: debug
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -288,7 +288,7 @@ licenses:
|
|
288
288
|
- Nonstandard
|
289
289
|
metadata:
|
290
290
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
291
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
291
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.248.0
|
292
292
|
post_install_message:
|
293
293
|
rdoc_options: []
|
294
294
|
require_paths:
|