Skip to content

Commit 008c19f

Browse files
authored
Merge pull request #8886 from readthedocs/humitos/unpin-pip
Builder: unpin pip
2 parents 26e371b + e90b260 commit 008c19f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

readthedocs/doc_builder/python_environments.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -297,13 +297,7 @@ def install_core_requirements(self):
297297
Feature.DONT_INSTALL_LATEST_PIP,
298298
# 20.3 uses the new resolver by default.
299299
positive='pip<20.3',
300-
301-
# We are pinning pip to 21.3.1 because builds are failing when
302-
# using a newer version. This is a temporal workaround to avoid
303-
# builds failing at this step, but we should come back to this and
304-
# unpin pip for this case.
305-
# https://github.com/readthedocs/readthedocs.org/issues/8864#issuecomment-1025499598
306-
negative='pip<=21.3.1',
300+
negative='pip',
307301
)
308302
cmd = pip_install_cmd + [pip_version, 'setuptools<58.3.0']
309303
self.build_env.run(

0 commit comments

Comments
 (0)