Skip to content

Commit b83c65d

Browse files
astrojuanlustsewd
andcommitted
Remove unneeded quotes
Co-authored-by: Santos Gallegos <[email protected]>
1 parent a06eeab commit b83c65d

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
@@ -200,7 +200,7 @@ def install_build_tools(self):
200200
# We cap setuptools to avoid breakage of projects
201201
# relying on setup.py invokations,
202202
# see https://github.com/readthedocs/readthedocs.org/issues/8659
203-
'"setuptools<58.3.0"',
203+
'setuptools<58.3.0',
204204
]
205205
self.build_env.run(
206206
*cmd,

readthedocs/rtd_tests/tests/test_celery.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ def test_build_tools(self, load_config, build_run):
593593
mock.call('asdf', 'install', 'python', python_version),
594594
mock.call('asdf', 'global', 'python', python_version),
595595
mock.call('asdf', 'reshim', 'python', record=False),
596-
mock.call('python', '-mpip', 'install', '-U', 'virtualenv', '"setuptools<58.3.0"'),
596+
mock.call('python', '-mpip', 'install', '-U', 'virtualenv', 'setuptools<58.3.0'),
597597
mock.call('asdf', 'install', 'nodejs', nodejs_version),
598598
mock.call('asdf', 'global', 'nodejs', nodejs_version),
599599
mock.call('asdf', 'reshim', 'nodejs', record=False),

0 commit comments

Comments
 (0)