mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +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
|
||||
},
|
||||
"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": {
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue