Exclude setup_path from pipfile

Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
Dan Ryan
2018-10-30 01:58:15 -04:00
parent 8459cd8d45
commit 2cbf0e050c
+1 -1
View File
@@ -753,7 +753,7 @@ class VCSRequirement(FileRequirement):
@property
def pipfile_part(self):
excludes = ["_repo", "_base_line"]
excludes = ["_repo", "_base_line", "setup_path"]
filter_func = lambda k, v: bool(v) is True and k.name not in excludes
pipfile_dict = attr.asdict(self, filter=filter_func).copy()
if "vcs" in pipfile_dict: