Kaydet (Commit) accb9de5 authored tarafından Joffrey F's avatar Joffrey F

Remove obsolete docker-py check in setup.py

Signed-off-by: 's avatarJoffrey F <joffrey@docker.com>
üst e1ab5457
......@@ -3,23 +3,9 @@ from __future__ import print_function
import codecs
import os
import sys
import pip
from setuptools import setup, find_packages
try:
if 'docker-py' in [
x.project_name for x in pip.get_installed_distributions()]:
print(
'ERROR: "docker-py" needs to be uninstalled before installing this'
' package:\npip uninstall docker-py', file=sys.stderr
)
sys.exit(1)
except AttributeError:
pass
ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment