diff --git a/.renovaterc.json b/.renovaterc.json index e4fc7db..260d70f 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -105,9 +105,10 @@ ], "postUpgradeTasks": { "commands": [ - "apt update && apt install python3-pip -y", "git stash", - "pip install copier==9.4.1", + "apt update", + "apt install python3-pip -y", + "pip install copier==9.4.1 --break-system-packages", "copier update --defaults --vcs-ref {{{newVersion}}}" ] }, diff --git a/template/.renovaterc.json.jinja b/template/.renovaterc.json.jinja index 784dc29..cdca9f0 100644 --- a/template/.renovaterc.json.jinja +++ b/template/.renovaterc.json.jinja @@ -117,9 +117,10 @@ ], "postUpgradeTasks": { "commands": [ - "apt update && apt install python3-pip -y", "git stash", - "pip install copier==9.4.1", + "apt update", + "apt install python3-pip -y", + "pip install copier==9.4.1 --break-system-packages", "copier update --defaults --vcs-ref {{ '{{{newVersion}}}' }}" ] },