diff options
author | Giampaolo Rodola <g.rodola@gmail.com> | 2016-09-22 15:48:02 +0200 |
---|---|---|
committer | Giampaolo Rodola <g.rodola@gmail.com> | 2016-09-22 15:48:02 +0200 |
commit | ea270f3627f55e3ab305de417573620a83c43455 (patch) | |
tree | ca5eabb2db62ab79bd4a46566d013daacb735ca2 | |
parent | 05bc446b5c0c7475d34ff16ae4b069e0c67cfdca (diff) | |
download | psutil-ea270f3627f55e3ab305de417573620a83c43455.tar.gz |
update deps
-rwxr-xr-x | .ci/travis/install.sh | 2 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.ci/travis/install.sh b/.ci/travis/install.sh index de3c34a6..677dc465 100755 --- a/.ci/travis/install.sh +++ b/.ci/travis/install.sh @@ -42,7 +42,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then fi if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]] || [[ $PYVER == 'py26' ]]; then - pip install -U ipaddress unittest2 mock==1.0.1 + pip install -U ipaddress unittest2 argparse mock==1.0.1 elif [[ $TRAVIS_PYTHON_VERSION == '2.7' ]] || [[ $PYVER == 'py27' ]]; then pip install -U ipaddress mock elif [[ $TRAVIS_PYTHON_VERSION == '3.2' ]] || [[ $PYVER == 'py32' ]]; then @@ -11,7 +11,8 @@ PYTHON != python -c \ TSCRIPT = psutil/tests/runner.py # List of nice-to-have dev libs. -DEPS = coverage \ +DEPS = argparse \ + coverage \ flake8 \ futures \ ipdb \ |