diff --git a/hooks/pyproject-without-special-deps.py b/hooks/pyproject-without-special-deps.py index b74bfeb..76f5260 100644 --- a/hooks/pyproject-without-special-deps.py +++ b/hooks/pyproject-without-special-deps.py @@ -22,6 +22,7 @@ def main(input, output, fields_to_remove): any_removed |= dep.pop(field, None) is not None if any_removed: dep["version"] = "*" + dep.pop("develop", None) output.write(tomlkit.dumps(data))