From 976734bc25dbd1c286ae3d77fad2a92fd7b6959b Mon Sep 17 00:00:00 2001 From: Stephen Steneker Date: Mon, 30 Apr 2018 11:20:25 +1000 Subject: [PATCH] Fix #590: mlaunch: update psutil requirement to 5.4.2 --- requirements.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4dfaff42..80305fe8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,4 @@ python-dateutil==2.2 matplotlib==1.3.1 numpy==1.8.0 pymongo>=3.3.0 -psutil>=2.0 +psutil>=5.4.2 diff --git a/setup.py b/setup.py index 1836035d..972dbb3a 100644 --- a/setup.py +++ b/setup.py @@ -17,8 +17,8 @@ # simplify the default install experience, particularly where a build # toolchain is required. extras_requires = { - "all": ['matplotlib>=1.3.1', 'numpy>=1.8.0', 'pymongo>=3.3', 'psutil>=2.0'], - "mlaunch": ['pymongo>=3.3', 'psutil>=2.0'], + "all": ['matplotlib>=1.3.1', 'numpy>=1.8.0', 'pymongo>=3.3', 'psutil>=5.4.2'], + "mlaunch": ['pymongo>=3.3', 'psutil>=5.4.2'], "mlogfilter": [], "mloginfo": ['numpy>=1.8.0'], "mlogvis": [],