From f97517c6b0af11f5bb64af3c7d735223815d658b Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Tue, 29 Dec 2020 13:33:42 +0000 Subject: [PATCH] Tell PyUp to look at `.in` files We only want PyUp to be checking for the dependencies we specify directly, not any sub-dependencies. By telling it to now look only at `.in` files we preserve this existing behaviour. --- .pyup.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pyup.yml b/.pyup.yml index 993ab58ec..733d5f032 100644 --- a/.pyup.yml +++ b/.pyup.yml @@ -4,5 +4,5 @@ schedule: "every week on monday" search: False requirements: - - requirements-app.txt - - requirements-dev.txt + - requirements.in + - requirements_for_test.in