Skip to content

Commit

Permalink
--use-pep517 when installing wheel for gltf plugin example
Browse files Browse the repository at this point in the history
  • Loading branch information
PProfizi committed Aug 2, 2023
1 parent 0434983 commit d290d20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Write-Host "activate venv"


Write-Host "install deps"
Start-Process "python" -ArgumentList ("-m pip install -r "+$pluginpath+"\requirements.txt --disable-pip-version-check") -NoNewWindow -Wait
Start-Process "python" -ArgumentList ("-m pip install -r "+$pluginpath+"\requirements.txt --disable-pip-version-check --use-pep517") -NoNewWindow -Wait
if (Test-Path ($tempfolder + "/venv/Lib/site-packages/__pycache__")){
Write-Host "remove __pycache__"
Remove-Item -Recurse -Force ($tempfolder + "/venv/Lib/site-packages/__pycache__")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ echo "activate venv"
source ${tempfolder}/venv/bin/activate

echo "install deps"
python -m pip install -r ${pluginpath}/requirements.txt --disable-pip-version-check
python -m pip install -r ${pluginpath}/requirements.txt --disable-pip-version-check --use-pep517

SITES=$(find ${tempfolder}/venv/ -type d -name "site-packages")
echo "SITES"
Expand Down

0 comments on commit d290d20

Please sign in to comment.