Update setuptools in Travis

This commit is contained in:
Markus Unterwaditzer 2017-09-25 20:14:02 +02:00
parent 944d5e709c
commit c6cc45c4b4
2 changed files with 12 additions and 8 deletions

View file

@ -11,7 +11,11 @@
"submodules": false
},
"install": [
"\n. scripts/travis-install.sh;\npip install -U pip;\npip install wheel;\nmake -e install-dev;\nmake -e install-$BUILD;\n"
". scripts/travis-install.sh",
"pip install -U pip setuptools",
"pip install wheel",
"make -e install-dev",
"make -e install-$BUILD"
],
"language": "python",
"matrix": {

View file

@ -20,13 +20,13 @@ cfg['branches'] = {
'only': ['auto', 'master']
}
cfg['install'] = ["""
. scripts/travis-install.sh;
pip install -U pip setuptools;
pip install wheel;
make -e install-dev;
make -e install-$BUILD;
"""]
cfg['install'] = """
. scripts/travis-install.sh
pip install -U pip setuptools
pip install wheel
make -e install-dev
make -e install-$BUILD
""".strip().splitlines()
cfg['script'] = ["make -e $BUILD"]