-
Notifications
You must be signed in to change notification settings - Fork 6
/
.pyup.yml
46 lines (37 loc) · 1.04 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[Note: The pyup.io configuration below does not apply to all SSL projects. For
example, not all project repos default to the "develop" branch, as specified in
the "branch" setting. Please modify the text accordingly before incorporating
it into your project.]
# configure updates globally
# default: all
# allowed: all, insecure, False
update: all
# set the default branch
# default: empty, the default branch on GitHub
branch: develop
# update schedule
# default: empty
# allowed: "every day", "every week", ..
schedule: "every day"
# configure dependency pinning globally
# default: True
# allowed: True, False
pin: True
# search for requirement files
# default: True
# allowed: True, False
search: False
# Specify requirement files by hand, default is empty
# default: empty
# allowed: list
requirements:
- dev-requirements.txt:
# update all dependencies and pin them
update: all
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