pyupio / pyup

A tool to update your project's dependencies on GitHub. Runs on pyup.io, comes with a command line interface.
https://pyup.io
MIT License
454 stars 67 forks source link

Defaults and Pipfile #359

Open asmodehn opened 5 years ago

asmodehn commented 5 years ago

This relates to #197

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 

Working around is easy, but still...