Skip to content

Commit

Permalink
Builder: unpin pip
Browse files Browse the repository at this point in the history
It seems the problem with pip was solved in
pypa/pip#10867 and 22.0.3 version was released with this
fix.
  • Loading branch information
humitos committed Feb 3, 2022
1 parent 3d4d3cb commit e90b260
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions readthedocs/doc_builder/python_environments.py
Expand Up @@ -471,13 +471,7 @@ def install_core_requirements(self):
Feature.DONT_INSTALL_LATEST_PIP,
# 20.3 uses the new resolver by default.
positive='pip<20.3',

# We are pinning pip to 21.3.1 because builds are failing when
# using a newer version. This is a temporal workaround to avoid
# builds failing at this step, but we should come back to this and
# unpin pip for this case.
# https://github.com/readthedocs/readthedocs.org/issues/8864#issuecomment-1025499598
negative='pip<=21.3.1',
negative='pip',
)
cmd = pip_install_cmd + [pip_version, 'setuptools<58.3.0']
self.build_env.run(
Expand Down

0 comments on commit e90b260

Please sign in to comment.