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 "submodules": false
}, },
"install": [ "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", "language": "python",
"matrix": { "matrix": {

View file

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