-
-
Notifications
You must be signed in to change notification settings - Fork 16.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use pip-compile and dependabot grouped updates (#5329)
- Loading branch information
Showing
19 changed files
with
230 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
day: "monday" | ||
time: "16:00" | ||
timezone: "UTC" | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
groups: | ||
github-actions: | ||
patterns: | ||
- '*' | ||
- package-ecosystem: pip | ||
directory: /requirements/ | ||
schedule: | ||
interval: monthly | ||
groups: | ||
python-requirements: | ||
patterns: | ||
- '*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Dependabot will only update files in the `requirements` directory. This directory is | ||
separate because the pins in here should not be updated automatically. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
https://github.com/pallets/werkzeug/archive/refs/heads/main.tar.gz | ||
https://github.com/pallets/jinja/archive/refs/heads/main.tar.gz | ||
https://github.com/pallets/markupsafe/archive/refs/heads/main.tar.gz | ||
https://github.com/pallets/itsdangerous/archive/refs/heads/main.tar.gz | ||
https://github.com/pallets/click/archive/refs/heads/main.tar.gz | ||
https://github.com/pallets-eco/blinker/archive/refs/heads/main.tar.gz |
6 changes: 3 additions & 3 deletions
6
requirements/tests-pallets-min.in → requirements-skip/tests-min.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Werkzeug==3.0.0 | ||
Jinja2==3.1.2 | ||
MarkupSafe==2.1.1 | ||
werkzeug==3.0.0 | ||
jinja2==3.1.2 | ||
markupsafe==2.1.1 | ||
itsdangerous==2.1.2 | ||
click==8.1.3 | ||
blinker==1.6.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile tests-min.in | ||
# | ||
blinker==1.6.2 | ||
# via -r tests-min.in | ||
click==8.1.3 | ||
# via -r tests-min.in | ||
itsdangerous==2.1.2 | ||
# via -r tests-min.in | ||
jinja2==3.1.2 | ||
# via -r tests-min.in | ||
markupsafe==2.1.1 | ||
# via | ||
# -r tests-min.in | ||
# jinja2 | ||
# werkzeug | ||
werkzeug==3.0.0 | ||
# via -r tests-min.in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
# SHA1:80754af91bfb6d1073585b046fe0a474ce868509 | ||
# | ||
# This file is autogenerated by pip-compile-multi | ||
# To update, run: | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile-multi | ||
# pip-compile build.in | ||
# | ||
build==0.10.0 | ||
# via -r requirements/build.in | ||
packaging==23.1 | ||
build==1.0.3 | ||
# via -r build.in | ||
packaging==23.2 | ||
# via build | ||
pyproject-hooks==1.0.0 | ||
# via build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
-r docs.in | ||
-r tests.in | ||
-r typing.in | ||
pip-compile-multi | ||
pip-tools | ||
pre-commit | ||
tox |
Oops, something went wrong.