From e8a0681a99ac9e12e19049c7cf307dad55eb9d09 Mon Sep 17 00:00:00 2001 From: John Evans Date: Thu, 27 Feb 2014 11:07:02 -0500 Subject: [PATCH] Confirmed to work with lxml 3.2.3, down from 3.3. #176 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 41deb1a..7769392 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ kwargs = {'name': 'Glymur', 'license': 'MIT', 'test_suite': 'glymur.test'} -instllrqrs = ['lxml>=3.3', 'numpy>=1.4.1'] +instllrqrs = ['lxml>=3.2.3', 'numpy>=1.4.1'] if sys.hexversion < 0x03030000: instllrqrs.append('contextlib2>=0.4') instllrqrs.append('mock>=1.0.1')