Skip to content

Commit

Permalink
Add .pyup.yml config
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger committed Jun 3, 2019
1 parent aa8a6b1 commit 1ac87d3
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .pyup.yml
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

0 comments on commit 1ac87d3

Please sign in to comment.