mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Require at least lxml==3.1
This commit is contained in:
parent
563f9c9d34
commit
2c600c96e5
3 changed files with 3 additions and 2 deletions
|
|
@ -23,6 +23,7 @@ Version 0.7.4
|
||||||
content change is also necessary. See :gh:`257`.
|
content change is also necessary. See :gh:`257`.
|
||||||
- :storage:`remotestorage` now automatically opens authentication dialogs in
|
- :storage:`remotestorage` now automatically opens authentication dialogs in
|
||||||
your configured GUI browser.
|
your configured GUI browser.
|
||||||
|
- **Packagers:** ``lxml>=3.1`` is now required (newer lower-bound version).
|
||||||
|
|
||||||
Version 0.7.3
|
Version 0.7.3
|
||||||
=============
|
=============
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -79,7 +79,7 @@ install-dev:
|
||||||
set -xe && if [ "$$REQUIREMENTS" = "devel" ]; then \
|
set -xe && if [ "$$REQUIREMENTS" = "devel" ]; then \
|
||||||
pip install -U --force-reinstall git+https://github.com/kennethreitz/requests; \
|
pip install -U --force-reinstall git+https://github.com/kennethreitz/requests; \
|
||||||
elif [ "$$REQUIREMENTS" = "minimal" ]; then \
|
elif [ "$$REQUIREMENTS" = "minimal" ]; then \
|
||||||
pip install -U --force-reinstall lxml==3.0 requests==2.4.1 requests_toolbelt==0.4.0 click==5.0; \
|
pip install -U --force-reinstall lxml==3.1 requests==2.4.1 requests_toolbelt==0.4.0 click==5.0; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
.PHONY: docs
|
.PHONY: docs
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -36,7 +36,7 @@ setup(
|
||||||
'click-log',
|
'click-log',
|
||||||
'click-threading',
|
'click-threading',
|
||||||
'requests != 2.9.0',
|
'requests != 2.9.0',
|
||||||
'lxml >=3.0, <=3.4.4',
|
'lxml >=3.1, <=3.4.4',
|
||||||
# https://github.com/sigmavirus24/requests-toolbelt/pull/28
|
# https://github.com/sigmavirus24/requests-toolbelt/pull/28
|
||||||
'requests_toolbelt>=0.5.0',
|
'requests_toolbelt>=0.5.0',
|
||||||
'atomicwrites'
|
'atomicwrites'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue