From 702e218f147de27c100a2278b8931a0d0419b22b Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Wed, 27 Jul 2016 15:40:47 +0300 Subject: [PATCH] Re-remove the psutil dependency from setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 21cda901a..548314ad8 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,6 @@ install_requires = [ 'configobj', 'cryptography>=0.7', # load_pem_x509_certificate 'parsedatetime>=1.3', # Calendar.parseDT - 'psutil>=2.2.1', # 2.1.0 for net_connections and 2.2.1 resolves #1080 'PyOpenSSL', 'pyrfc3339', 'python2-pythondialog>=3.2.2rc1', # Debian squeeze support, cf. #280 @@ -70,6 +69,7 @@ dev_extras = [ 'coverage', 'nose', 'pep8', + 'psutil>=2.2.1', # for tests, optional 'pylint==1.4.2', # upstream #248 'tox', 'twine',