-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1261 from github/update-v2.1.25-ff5ca122
Merge main into releases/v2
- Loading branch information
Showing
10 changed files
with
104 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
#! /usr/bin/pwsh | ||
|
||
py -2 -m pip install --user --upgrade pip setuptools wheel | ||
py -3 -m pip install --user --upgrade pip setuptools wheel | ||
# while waiting for the next release of `virtualenv` after v20.16.5, we install an older | ||
# version of `setuptools` to ensure that binaries are always put under | ||
# `<venv-path>/bin`, which wouldn't always happen with the GitHub actions version of | ||
# Ubuntu 22.04. See https://github.com/github/codeql-action/issues/1249 | ||
py -2 -m pip install --user --upgrade pip 'setuptools<60' wheel | ||
py -3 -m pip install --user --upgrade pip 'setuptools<60' 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' | ||
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 "poetry>=1.1" | ||
py -3 -m pip install --user pipenv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters