mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 12:14:26 +00:00
Try uninstalling older version of sphinx
This commit is contained in:
parent
f4d38ce3ea
commit
95fa85cf04
@ -21,6 +21,8 @@ def pip_install(package, commit=None, **kwargs):
|
|||||||
# Otherwise throw CalledProcessError.
|
# Otherwise throw CalledProcessError.
|
||||||
if p.returncode > 1 and 'No command by the name pip show' not in stderr:
|
if p.returncode > 1 and 'No command by the name pip show' not in stderr:
|
||||||
raise CalledProcessError(p.returncode, cmd)
|
raise CalledProcessError(p.returncode, cmd)
|
||||||
|
else:
|
||||||
|
check_call('pip', 'uninstall', '-y', 'sphinx')
|
||||||
package = 'git+git://github.com/{0}.git@{1}'.format(package, commit)
|
package = 'git+git://github.com/{0}.git@{1}'.format(package, commit)
|
||||||
print('Installing {}'.format(package))
|
print('Installing {}'.format(package))
|
||||||
check_call(['pip', 'install', '--upgrade', package])
|
check_call(['pip', 'install', '--upgrade', package])
|
||||||
|
Loading…
Reference in New Issue
Block a user