Skip to content

Commit

Permalink
Added pyup config
Browse files Browse the repository at this point in the history
  • Loading branch information
noirbizarre committed Oct 24, 2017
1 parent 8b2c573 commit 96b6530
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .pyup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# configure updates globally
# default: all
# allowed: all, insecure, False
# update: all

# configure dependency pinning globally
# default: True
# allowed: True, False
pin: False

# set the default branch
# default: empty, the default branch on GitHub
# branch: dev

# update schedule
# default: empty
# allowed: "every day", "every week", ..
# schedule: "every day"

# search for requirement files
# default: True
# allowed: True, False
# search: True

# Specify requirement files by hand, default is empty
# default: empty
# allowed: list
# requirements:
# - requirements/staging.txt:
# # update all dependencies and pin them
# update: all
# pin: True
# - requirements/dev.txt:
# # don't update dependencies, use global 'pin' default
# update: False
# - requirements/prod.txt:
# # update insecure only, pin all
# update: insecure
# pin: True

# add a label to pull requests, default is not set
# requires private repo permissions, even on public repos
# default: empty
label_prs: update

# assign users to pull requests, default is not set
# requires private repo permissions, even on public repos
# default: empty
# assignees:
# - carl
# - carlsen

# configure the branch prefix the bot is using
# default: pyup-
branch_prefix: pyup/

# set a global prefix for PRs
# default: empty
pr_prefix: "[PyUP]"

# allow to close stale PRs
# default: True
close_prs: True

0 comments on commit 96b6530

Please sign in to comment.