Skip to content

Commit 4b5b6cd

Browse files
Gavin AguiarGavin Aguiar
authored andcommitted
Installing setuptools and wheel
1 parent 64b5cdd commit 4b5b6cd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pack/scripts/nix_deps.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
python -m venv .env
44
source .env/bin/activate
5-
python -m pip install --upgrade pip
5+
python -m pip install --upgrade pip setuptools wheel
66

7-
python -m pip install . --use-pep517
7+
python -m pip install .
88

9-
python -m pip install . --no-compile --use-pep517 --target "$BUILD_SOURCESDIRECTORY/deps"
9+
python -m pip install . --no-compile --target "$BUILD_SOURCESDIRECTORY/deps"

pack/scripts/win_deps.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
python -m venv .env
22
.env\Scripts\Activate.ps1
3-
python -m pip install --upgrade pip
3+
python -m pip install --upgrade pip setuptools wheel
44

5-
python -m pip install . --use-pep517
5+
python -m pip install .
66

77
$depsPath = Join-Path -Path $env:BUILD_SOURCESDIRECTORY -ChildPath "deps"
88

9-
python -m pip install . azure-functions --use-pep517 --no-compile --target $depsPath.ToString()
9+
python -m pip install . azure-functions --no-compile --target $depsPath.ToString()

0 commit comments

Comments
 (0)