From 2c600c96e584305ae78e2be92d45fec21d05bf4c Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 17 Dec 2015 22:37:23 +0100 Subject: [PATCH] Require at least lxml==3.1 --- CHANGELOG.rst | 1 + Makefile | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 22eeab9..7fcc33d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -23,6 +23,7 @@ Version 0.7.4 content change is also necessary. See :gh:`257`. - :storage:`remotestorage` now automatically opens authentication dialogs in your configured GUI browser. +- **Packagers:** ``lxml>=3.1`` is now required (newer lower-bound version). Version 0.7.3 ============= diff --git a/Makefile b/Makefile index 8db3bfe..38963c8 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ install-dev: set -xe && if [ "$$REQUIREMENTS" = "devel" ]; then \ pip install -U --force-reinstall git+https://github.com/kennethreitz/requests; \ 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 .PHONY: docs diff --git a/setup.py b/setup.py index f8b0302..38f8ad5 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( 'click-log', 'click-threading', 'requests != 2.9.0', - 'lxml >=3.0, <=3.4.4', + 'lxml >=3.1, <=3.4.4', # https://github.com/sigmavirus24/requests-toolbelt/pull/28 'requests_toolbelt>=0.5.0', 'atomicwrites'