-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently, dependabot does not update pyproject.toml deps
- Loading branch information
1 parent
c2a8f97
commit 76b6c71
Showing
1 changed file
with
29 additions
and
4 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,18 +1,43 @@ | ||
# See help here: https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/enabling-and-disabling-version-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "./tests/python_tests/" | ||
schedule: | ||
interval: "weekly" | ||
interval: "daily" | ||
time: "09:00" | ||
timezone: "Europe/Dublin" | ||
versioning-strategy: increase-if-necessary | ||
|
||
- package-ecosystem: "pip" | ||
directory: "./tools/llm_bench/" | ||
schedule: | ||
interval: "weekly" | ||
interval: "daily" | ||
time: "09:00" | ||
timezone: "Europe/Dublin" | ||
versioning-strategy: increase-if-necessary | ||
|
||
- package-ecosystem: "pip" | ||
directory: "./tools/who_what_benchmark/" | ||
schedule: | ||
interval: "weekly" | ||
interval: "daily" | ||
time: "09:00" | ||
timezone: "Europe/Dublin" | ||
versioning-strategy: increase-if-necessary | ||
|
||
- package-ecosystem: "pip" | ||
directory: "samples/" | ||
schedule: | ||
interval: "weekly" | ||
interval: "daily" | ||
time: "09:00" | ||
timezone: "Europe/Dublin" | ||
versioning-strategy: increase-if-necessary | ||
|
||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
time: "09:00" | ||
timezone: "Europe/Dublin" | ||
versioning-strategy: increase-if-necessary |