mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Move requests_toolbelt to real dependencies
This commit is contained in:
parent
95bf046d66
commit
dce438d758
2 changed files with 3 additions and 3 deletions
3
build.sh
3
build.sh
|
|
@ -16,8 +16,7 @@ install_build_tests() {
|
||||||
coverage \
|
coverage \
|
||||||
pytest \
|
pytest \
|
||||||
pytest-xprocess \
|
pytest-xprocess \
|
||||||
git+https://github.com/geier/leif \
|
git+https://github.com/geier/leif
|
||||||
git+https://github.com/sigmavirus24/requests-toolbelt
|
|
||||||
_davserver $DAV_SERVER
|
_davserver $DAV_SERVER
|
||||||
if [ "$TRAVIS" = "true" ]; then
|
if [ "$TRAVIS" = "true" ]; then
|
||||||
export CFLAGS=-O0 # speed up builds of packages which don't have wheels
|
export CFLAGS=-O0 # speed up builds of packages which don't have wheels
|
||||||
|
|
|
||||||
3
setup.py
3
setup.py
|
|
@ -30,7 +30,8 @@ setup(
|
||||||
'argvard>=0.3.0',
|
'argvard>=0.3.0',
|
||||||
'requests',
|
'requests',
|
||||||
'lxml',
|
'lxml',
|
||||||
'icalendar>=3.6'
|
'icalendar>=3.6',
|
||||||
|
'requests_toolbelt>=0.3.0'
|
||||||
],
|
],
|
||||||
extras_require={'keyring': ['keyring']}
|
extras_require={'keyring': ['keyring']}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue