ports/textproc/xml2rfc/files/patch-setup-lxml
Joe Marcus Clarke ca3e1f7adc Allow lxml 3.2.5 to be used. More patches may be forthcoming as we uncover
what issues might exist beyond 3.2.1.

Submitted by:	Rob Austein <sra@hactrn.net>
2014-02-12 23:34:19 +00:00

10 lines
402 B
Text

--- setup.py.~1~ 2014-01-17 14:28:33.000000000 -0500
+++ setup.py 2014-02-12 08:26:27.000000000 -0500
@@ -89,6 +89,6 @@
package_data={'xml2rfc': ['templates/*',
]},
- install_requires = ['lxml >=2.2.8', 'lxml <= 3.2.1' ],
+ install_requires = ['lxml >=2.2.8' ],
zip_safe = False, # We're reading templates from a package directory.
)