exclude pipenv from hash generation.

This commit is contained in:
Matt Davis
2022-10-10 06:57:42 -04:00
parent 7177ca15fe
commit 58bdd319ec
+1 -1
View File
@@ -81,7 +81,7 @@ class Pipfile(DataView):
"develop": self._data.get("dev-packages", {}),
}
for category, values in self._data.items():
if category in PIPFILE_SECTIONS or category in ("default", "develop"):
if category in PIPFILE_SECTIONS or category in ("default", "develop", "pipenv"):
continue
data[category] = values
content = json.dumps(data, sort_keys=True, separators=(",", ":"))