mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
exclude pipenv from hash generation.
This commit is contained in:
Vendored
+1
-1
@@ -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=(",", ":"))
|
||||
|
||||
Reference in New Issue
Block a user