-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa8a6b1
commit 1ac87d3
Showing
1 changed file
with
40 additions
and
0 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,40 @@ | ||
# set the default branch | ||
# default: empty, the default branch on GitHub | ||
branch: master | ||
|
||
# update schedule | ||
# default: empty | ||
# allowed: "every day", "every week", .. | ||
schedule: "every day" | ||
|
||
# search for requirement files | ||
# default: True | ||
# allowed: True, False | ||
search: False | ||
|
||
# Specify requirement files by hand, default is empty | ||
# default: empty | ||
# allowed: list | ||
requirements: | ||
|
||
- requirements.in: | ||
update: all | ||
pin: False | ||
- requirements.txt: | ||
update: security | ||
pin: True | ||
|
||
- test_requirements.in: | ||
update: all | ||
pin: False | ||
- test_requirements.txt: | ||
update: security | ||
pin: True | ||
|
||
# configure the branch prefix the bot is using | ||
# default: pyup- | ||
branch_prefix: pyup- | ||
|
||
# allow to close stale PRs | ||
# default: True | ||
close_prs: True |