From a6ceab5dbcb1601b589cc06c34a89f92212d834a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 24 Sep 2015 08:53:20 +0200 Subject: [PATCH] Fix pip executable name for OS X. --- scripts/dev/ci_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/ci_install.py b/scripts/dev/ci_install.py index c05407e12..58ae785e3 100644 --- a/scripts/dev/ci_install.py +++ b/scripts/dev/ci_install.py @@ -97,7 +97,7 @@ elif os.environ.get('TRAVIS_OS_NAME', None) == 'osx': brew(['install', 'python3', 'pyqt5']) print("Installing tox...") - subprocess.check_call(['sudo', 'pip3.4', 'install', 'tox']) + subprocess.check_call(['sudo', 'pip3', 'install', 'tox']) check_setup('python3')