mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 09:10:07 +08:00
Context for previous version is https://github.com/github/codeql-action/pull/862 Locally, I was able to install `20.15.1` with Python2. I don't see any reason why python3 version should be restricted.
14 lines
521 B
PowerShell
14 lines
521 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.12.0'
|
|
py -3 -m pip install --user virtualenv
|
|
|
|
# We aren't compatible with poetry 1.2
|
|
py -3 -m pip install --user "poetry>=1.1,<1.2"
|
|
py -3 -m pip install --user pipenv
|