It seems specifying Pipfile as requirement does not honour the global defaults ?
Setting in configuration :
# configure updates globally
# default: all
# allowed: all, insecure, False
update: all
# configure dependency pinning globally
# default: True
# allowed: True, False
pin: True
# Specify requirement files by hand, default is empty
# default: empty
# allowed: list
requirements:
- Pipfile
[...]
as per the documentation, currently gives however :
We have detected a .pyup.yml configuration file. Based on this and our defaults, your current settings are:
Update: all
Requirements: [{'path': 'Pipfile', 'pin': False, 'compile': False, 'update': 'all'}]
Search: True
Pin: True
This relates to #197
It seems specifying Pipfile as requirement does not honour the global defaults ? Setting in configuration :
as per the documentation, currently gives however :
Working around is easy, but still...