I am developing a mesos framework in GitHub in which I want to use Travis-CI for continuous integration.
To do it I have a script in which I build and install mesos 1.1.0 in the travis VM. However the mesos install always fails with the error:
test "../.." = ".." || \
(/bin/mkdir -p python/src/mesos && cp -pf ../../src/python/src/mesos/__init__.py python/src/mesos/__init__.py)
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: invalid command 'bdist_wheel'
This is the script I'm using to build & install mesos, and this is the simple .travis.yml file I'm using.
After googling I've added - sudo -H pip install setuptools --upgrade
to the travis.yml file to resolve the problem, but no luck. Other solutions found didn't work either.
How could this problem be resolved?