diff --git a/scripts/publish_packages.py b/scripts/publish_packages.py index 29f55a9f..46f33109 100644 --- a/scripts/publish_packages.py +++ b/scripts/publish_packages.py @@ -26,7 +26,7 @@ def patch_version(version: str): with open("pyproject.toml", "w") as f: tomlkit.dump(pyproject, f) - subprocess.check_call(["poetry", "lock"]) + subprocess.check_call(["poetry", "lock", "--no-interaction", "--no-cache"]) subprocess.check_call(["poetry", "install"])