Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cover Python's 'This environment is externally managed' error #94

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading