mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-13 22:28:33 +00:00
Keep working if pip isn't installed
This might be installed by invoking setup.py directly.
This commit is contained in:
parent
99e828d15d
commit
a7d1c725e4
11
setup.py
11
setup.py
@ -4,10 +4,13 @@ import pkg_resources
|
||||
import sys
|
||||
import os
|
||||
|
||||
if int(pkg_resources.get_distribution("pip").version.split('.')[0]) < 6:
|
||||
print('pip older than 6.0 not supported, please upgrade pip with:\n\n'
|
||||
' pip install -U pip')
|
||||
sys.exit(-1)
|
||||
try:
|
||||
if int(pkg_resources.get_distribution("pip").version.split('.')[0]) < 6:
|
||||
print('pip older than 6.0 not supported, please upgrade pip with:\n\n'
|
||||
' pip install -U pip')
|
||||
sys.exit(-1)
|
||||
except pkg_resources.DistributionNotFound:
|
||||
pass
|
||||
|
||||
if os.environ.get('CONVERT_README'):
|
||||
import pypandoc
|
||||
|
Loading…
x
Reference in New Issue
Block a user