From 7b8b7f5676344419febbc2c5b14b240672d618bd Mon Sep 17 00:00:00 2001 From: Marius Ghita Date: Wed, 8 Jan 2025 17:29:32 +0200 Subject: [PATCH] chore: remove python3 specific step #0000 The step was necessary in devcontainers because repo-ansible requires python dependencies to run. Since repo-ansible provides docker containers instead for common usage the python+debian workaround is no longer necessary. --- templates/.devcontainer/postCreate.sh.j2 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/templates/.devcontainer/postCreate.sh.j2 b/templates/.devcontainer/postCreate.sh.j2 index d9d971e..33ac012 100755 --- a/templates/.devcontainer/postCreate.sh.j2 +++ b/templates/.devcontainer/postCreate.sh.j2 @@ -1,10 +1,6 @@ #!/usr/bin/env bash # {{ repo_managed }} -# Workaround for recent Python versions which prevent global pip package installation without an explicit flag -# or removal of a certain file. -sudo rm /usr/lib/python3.*/EXTERNALLY-MANAGED || true - # This is a workaround on an issue with the devcontainer reported on Windows where followup git config commands would # fail. #9067 git config --global --add safe.directory /app