-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
.pyup.yml
30 lines (30 loc) · 807 Bytes
/
.pyup.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# see https://pyup.io/docs/configuration/ for all available options
update: all
# configure dependency pinning globally
pin: True
# set the default branch
branch: main
# update schedule
# allowed: "every day", "every week", ..
schedule: 'every month'
# search for requirement files
search: False
# specify requirement files by hand
requirements:
- requirements.txt:
pin: False
- requirements-dev.txt
- requirements-test.txt
- docs/requirements.txt
# add a label to pull requests, default is not set
label_prs: update
# assign users to pull requests, default is not set
assignees:
- rnag
# configure the branch prefix the bot is using
# default: pyup-
branch_prefix: pyup/
# set a global prefix for PRs, default is not set
# pr_prefix: "Bug #12345"
# allow to close stale PRs
close_prs: True