dependabot-uv 0.377.0 → 0.378.0
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 +12 -1
- data/helpers/requirements-3.9.txt +15 -0
- data/helpers/requirements.txt +9 -9
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 448a91d2d37b7d629d152eeb223060ef39a1fbdce3c239af1c296d497b081b24
|
|
4
|
+
data.tar.gz: 73d2e249b54aa9c849dd4c7cf88bf1586af43122b020cc2e4f2d27ce60225356
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 169376e07393dd2bb4711faae6d372948c56a4b607608f7432426aaa35aedec55516b39ad378e5ba9d5b18532100552fd9b4aa30cc10f10520273724405a09d8
|
|
7
|
+
data.tar.gz: 35d5bfefbcaaa09a71798e6fda30c2e26beb23c3c5e62090ed0fcc8a45b126a0f2537b56206e3565fe2e43fe31cc9e8dfc9c5ce0c372f6f392f9e47c881c34f2
|
data/helpers/build
CHANGED
|
@@ -15,10 +15,21 @@ cp -r \
|
|
|
15
15
|
"$helpers_dir/lib" \
|
|
16
16
|
"$helpers_dir/run.py" \
|
|
17
17
|
"$helpers_dir/requirements.txt" \
|
|
18
|
+
"$helpers_dir/requirements-3.9.txt" \
|
|
18
19
|
"$install_dir"
|
|
19
20
|
|
|
20
21
|
cd "$install_dir"
|
|
21
|
-
|
|
22
|
+
|
|
23
|
+
python_version=$1
|
|
24
|
+
# pip 26.x and several other packages require Python >=3.10.
|
|
25
|
+
# Use 3.9-compatible versions for the deprecated Python 3.9 runtime.
|
|
26
|
+
if [[ "$python_version" == 3.9.* ]]; then
|
|
27
|
+
req_file="requirements-3.9.txt"
|
|
28
|
+
else
|
|
29
|
+
req_file="requirements.txt"
|
|
30
|
+
fi
|
|
31
|
+
|
|
32
|
+
PYENV_VERSION=$python_version pyenv exec pip3 --disable-pip-version-check install --use-pep517 -r "$req_file"
|
|
22
33
|
|
|
23
34
|
# Remove the extra objects added during the previous install. Based on
|
|
24
35
|
# https://github.com/docker-library/python/blob/master/Dockerfile-linux.template
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Python 3.9-compatible versions pinned to the last known working set before
|
|
2
|
+
# packages dropped 3.9 support. Python 3.9 reached end-of-life on 2025-10-31.
|
|
3
|
+
pip==24.2
|
|
4
|
+
pip-tools==7.5.3
|
|
5
|
+
flake8==7.3.0
|
|
6
|
+
hashin==1.0.5
|
|
7
|
+
pipenv==2024.4.1
|
|
8
|
+
plette==2.1.0
|
|
9
|
+
poetry==2.2.1
|
|
10
|
+
# tomli is required for Python <3.11 (stdlib tomllib was added in 3.11).
|
|
11
|
+
tomli==2.2.1
|
|
12
|
+
uv==0.11.8
|
|
13
|
+
|
|
14
|
+
# Some dependencies will only install if Cython is present
|
|
15
|
+
Cython==3.2.4
|
data/helpers/requirements.txt
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
pip==
|
|
2
|
-
pip-tools==7.
|
|
3
|
-
flake8==7.
|
|
4
|
-
hashin==1.0.
|
|
5
|
-
pipenv==2024.
|
|
6
|
-
plette==2.1
|
|
7
|
-
poetry==
|
|
1
|
+
pip==26.1.1
|
|
2
|
+
pip-tools==7.5.3
|
|
3
|
+
flake8==7.3.0
|
|
4
|
+
hashin==1.0.5
|
|
5
|
+
pipenv==2024.4.1
|
|
6
|
+
plette==2.2.1
|
|
7
|
+
poetry==2.3.4
|
|
8
8
|
# TODO: Replace 3p package `tomli` with 3.11's new stdlib `tomllib` once we drop support for Python 3.10.
|
|
9
|
-
tomli==2.
|
|
9
|
+
tomli==2.4.1
|
|
10
10
|
uv==0.11.8
|
|
11
11
|
|
|
12
12
|
# Some dependencies will only install if Cython is present
|
|
13
|
-
Cython==3.
|
|
13
|
+
Cython==3.2.4
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-uv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.378.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
@@ -15,28 +15,28 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
18
|
+
version: 0.378.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.
|
|
25
|
+
version: 0.378.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: dependabot-python
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
30
|
- - '='
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.
|
|
32
|
+
version: 0.378.0
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - '='
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.
|
|
39
|
+
version: 0.378.0
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: debug
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -259,6 +259,7 @@ files:
|
|
|
259
259
|
- helpers/lib/__init__.py
|
|
260
260
|
- helpers/lib/hasher.py
|
|
261
261
|
- helpers/lib/parser.py
|
|
262
|
+
- helpers/requirements-3.9.txt
|
|
262
263
|
- helpers/requirements.txt
|
|
263
264
|
- helpers/run.py
|
|
264
265
|
- lib/dependabot/uv.rb
|
|
@@ -301,7 +302,7 @@ licenses:
|
|
|
301
302
|
- MIT
|
|
302
303
|
metadata:
|
|
303
304
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
304
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
305
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.378.0
|
|
305
306
|
rdoc_options: []
|
|
306
307
|
require_paths:
|
|
307
308
|
- lib
|