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>
This commit is contained in:
Joe Marcus Clarke 2014-02-12 23:34:19 +00:00
parent 4c62f5d3ae
commit ca3e1f7adc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=344034
2 changed files with 11 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= xml2rfc
PORTVERSION= 2.4.5
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= textproc
MASTER_SITES= http://tools.ietf.org/tools/xml2rfc2/cli/

View File

@ -0,0 +1,10 @@
--- 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.
)