Skip to content

Commit a5cdb0c

Browse files
committed
#163 Allow newer versions of lxml.
In 5c23f6f lxml was bumped from 3.6.1 to 3.6.4 to fix #108. At the time we were cautious to increase it any further since unit tests and integration tests hadn't been passing for roughly one year. With unit tests and continous integration in place again, I think we can open up lxml to allow more recent version. This would likely fix the user's issue reported in #163.
1 parent 81b227d commit a5cdb0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ certifi
44
freezegun
55
html5lib
66
libfaketime
7-
lxml==3.6.4
7+
lxml>=3.6.4
88
mock
99
nose-timer
1010
nose

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def find_version(*file_paths):
7171
'requests',
7272
'celery>=3.1',
7373
'xlrd',
74-
'lxml==3.6.4',
74+
'lxml>=3.6.4',
7575
'html5lib',
7676
'mock',
7777
'certifi'

0 commit comments

Comments
 (0)