Skip to content

Commit

Permalink
Merge pull request #94 from carlopi/fix_python_managed
Browse files Browse the repository at this point in the history
Cover Python's 'This environment is externally managed' error
  • Loading branch information
carlopi authored Oct 14, 2024
2 parents 4c8406c + 116332e commit fc754ef
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/_extension_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,10 @@ jobs:
BUCKET_NAME: ${{ secrets.S3_DUCKDB_ORG_BUCKET }}
DUCKDB_EXTENSION_SIGNING_PK: ${{ secrets.S3_DUCKDB_ORG_EXTENSION_SIGNING_PK }}
DUCKDB_DEPLOY_SCRIPT_MODE: for_real
PIP_BREAK_SYSTEM_PACKAGES: 1
run: |
pwd
python3 -m pip install pip awscli
python3 -m pip install awscli
git config --global --add safe.directory '*'
cd duckdb
git fetch --tags
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/_extension_distribution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,14 @@ jobs:
steps:
- name: Free up some unused space
run: |
docker rmi $(docker images -a -q)
docker images -a -q > package.list
if [ -s package.list ]; then
echo "To be deleted"
cat package.list
echo "---"
docker rmi $(cat package.list)
fi
rm package.list
- uses: actions/checkout@v4
name: Checkout override repository
Expand Down

0 comments on commit fc754ef

Please sign in to comment.