Skip to content

Commit

Permalink
pip==21.3.1 for now (Chia-Network#10035)
Browse files Browse the repository at this point in the history
* pip==21.3.1 for now

* More pip pinning

* Pip

* Pip
  • Loading branch information
altendky authored Jan 30, 2022
1 parent 34edf6e commit fedae0c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ Write-Output "Python version is:" $pythonVersion

py -m venv venv

venv\scripts\python -m pip install --upgrade pip setuptools wheel
# TODO: unpin pip after fixing support for 22.0 with our pypi.chia.net
venv\scripts\python -m pip install --upgrade pip==21.3.1 setuptools wheel
venv\scripts\pip install --extra-index-url https://pypi.chia.net/simple/ miniupnpc==2.2.2
venv\scripts\pip install --editable . --extra-index-url https://pypi.chia.net/simple/

Expand Down
3 changes: 2 additions & 1 deletion build_scripts/build_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ Write-Output "Create venv - python3.9 is required in PATH"
Write-Output " ---"
python -m venv venv
. .\venv\Scripts\Activate.ps1
python -m pip install --upgrade pip
# TODO: unpin pip after fixing support for 22.0 with our pypi.chia.net
python -m pip install --upgrade pip==21.3.1
pip install wheel pep517
pip install pywin32
pip install pyinstaller==4.5
Expand Down
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ fi
# shellcheck disable=SC1091
. ./activate
# pip 20.x+ supports Linux binary wheels
python -m pip install --upgrade pip
# TODO: unpin pip after fixing support for 22.0 with our pypi.chia.net
python -m pip install --upgrade pip==21.3.1
python -m pip install wheel
#if [ "$INSTALL_PYTHON_VERSION" = "3.8" ]; then
# This remains in case there is a diversion of binary wheels
Expand Down

0 comments on commit fedae0c

Please sign in to comment.