mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Update setuptools in Travis
This commit is contained in:
parent
944d5e709c
commit
c6cc45c4b4
2 changed files with 12 additions and 8 deletions
|
|
@ -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": {
|
||||||
|
|
|
||||||
|
|
@ -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"]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue