Fix pip executable name for OS X.

This commit is contained in:
Florian Bruhin 2015-09-24 08:53:20 +02:00
parent 2940a4267b
commit a6ceab5dbc

View File

@ -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')