This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename requirements.txt to requirements_tooling.txt * Add dependabot config * Correct comment Co-authored-by: rwidom <[email protected]> Co-authored-by: rwidom <[email protected]>
- Loading branch information
1 parent
323d07b
commit 516d767
Showing
4 changed files
with
29 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
################################# | ||
# Dependabot Configuration File # | ||
################################# | ||
|
||
# current Github-native version of Dependabot | ||
version: 2 | ||
|
||
updates: | ||
# Enable version updates for Python libraries in `requirements_dev.txt` | ||
# These can be updated more frequently than those in `requirements_prod.txt` since | ||
# they are not pinned by the Airflow constraints file. | ||
- package-ecosystem: pip | ||
directory: / | ||
# Check for updates once a month | ||
schedule: | ||
interval: monthly | ||
labels: | ||
- "💻 aspect: code" | ||
- "🧰 goal: internal improvement" | ||
- "🟩 priority: low" | ||
- "🐍 tech: python" | ||
- dependencies |
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 was deleted.
Oops, something went wrong.
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 @@ | ||
# For local dev tooling only, this is separate from requirements_dev.txt because these | ||
# libraries are not needed within the built docker container in any environment. | ||
black==22.3.0 | ||
flake8==3.9.2 | ||
isort==5.9.3 | ||
pre-commit==2.14.0 |