mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 01:00:20 +08:00
Force the virtualenv version to be 20.11 or less. The 20.12 version is failing for python 2 right now.
14 lines
563 B
PowerShell
14 lines
563 B
PowerShell
#! /usr/bin/pwsh
|
|
|
|
py -2 -m pip install --user --upgrade pip setuptools wheel
|
|
py -3 -m pip install --user --upgrade pip setuptools wheel
|
|
|
|
# virtualenv is a bit nicer for setting up virtual environment, since it will provide up-to-date versions of
|
|
# pip/setuptools/wheel which basic `python3 -m venv venv` won't
|
|
py -2 -m pip install --user 'virtualenv<20.11'
|
|
py -3 -m pip install --user 'virtualenv<20.11'
|
|
|
|
# poetry 1.0.10 has error (https://github.com/python-poetry/poetry/issues/2711)
|
|
py -3 -m pip install --user poetry!=1.0.10
|
|
py -3 -m pip install --user pipenv
|