Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
0.1.29
++++++
* `azdev setup`: Pin pip to 20.2.4.

0.1.28
++++++
* [Linter] Fix minor display issue in `azdev linter`.
Expand Down
2 changes: 1 addition & 1 deletion azdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# -----------------------------------------------------------------------------

__VERSION__ = '0.1.28'
__VERSION__ = '0.1.29'
4 changes: 2 additions & 2 deletions azdev/operations/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ def setup(cli_path=None, ext_repo_path=None, ext=None, deps=None):
# install packages
subheading('Installing packages')

# upgrade to latest pip
pip_cmd('install --upgrade pip -q', 'Upgrading pip...')
# Use pip==20.2.4, due to https://github.com/pypa/pip/issues/9284
pip_cmd('install --upgrade pip==20.2.4 -q', 'Installing pip==20.2.4...')

_install_cli(cli_path, deps=deps)
_install_extensions(ext_to_install)
Expand Down