From 8ad58139cdec87ec0cba5fad7b4de24d97aef645 Mon Sep 17 00:00:00 2001 From: phunterlau Date: Sun, 18 Oct 2015 18:55:15 -0700 Subject: [PATCH] fix pylint warnings --- python-package/setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/python-package/setup.py b/python-package/setup.py index 6b5ac2615..652ef49a5 100644 --- a/python-package/setup.py +++ b/python-package/setup.py @@ -4,10 +4,9 @@ from __future__ import absolute_import import sys import os from setuptools import setup, find_packages -import subprocess +#import subprocess sys.path.insert(0, '.') -import os #build on the fly if install in pip #otherwise, use build.sh in the parent directory @@ -55,7 +54,7 @@ setup(name='xgboost', #this will use MANIFEST.in during install where we specify additional files, #this is the golden line include_package_data=True, - #!!! don't use data_files, otherwise install_data process will copy it to + #!!! don't use data_files, otherwise install_data process will copy it to #root directory for some machines, and cause confusions on building #data_files=[('xgboost', LIB_PATH)], url='https://github.com/dmlc/xgboost')