Skip to content

Commit 017f581

Browse files
authored
Merge pull request #4261 from rtfd/agj/hotfix-pip10
Revert "Merge pull request #4206 from FlorianKuckelkorn/fix/pip-breaking-change"
2 parents af22d27 + 4fec032 commit 017f581

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readthedocs/doc_builder/python_environments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def install_core_requirements(self):
253253
'python',
254254
self.venv_bin(filename='pip'),
255255
'install',
256-
'--only-binary=:all:',
256+
'--use-wheel',
257257
'--upgrade',
258258
'--cache-dir',
259259
self.project.pip_cache_path,

readthedocs/rtd_tests/tests/test_doc_building.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ def setUp(self):
11371137
'python',
11381138
mock.ANY, # pip path
11391139
'install',
1140-
'--only-binary=:all:',
1140+
'--use-wheel',
11411141
'--upgrade',
11421142
'--cache-dir',
11431143
mock.ANY, # cache path

0 commit comments

Comments
 (0)