From 91d62d2fe55eca5dbb5408897db9b69f8c187f17 Mon Sep 17 00:00:00 2001 From: Chandan Singh Date: Wed, 22 Aug 2018 18:41:09 +0100 Subject: MANIFEST.in: Fix include for dev-requirements.txt Currently, running any setuptools commands using `setup.py` generates a warning like so: warning: manifest_maker: MANIFEST.in, line 21: unknown action 'dev-requirements.txt' The syntax is invalid and got accidentally introduced in !637 but it's a shame that this is not a warning and no obvious way to make it an error if there are invalid things in MANIFEST.in file. --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 80c815e55..f9e506027 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -23,4 +23,4 @@ recursive-include tests *.expected recursive-include buildstream/_protos *.proto # Requirements files -dev-requirements.txt +include dev-requirements.txt -- cgit v1.2.1