1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: avoid problems to parse EntryPoint during build
This fixes "error in pyRdfa3 setup command: Problems to parse EntryPoint".
Author: Christian Marillat <marillat@debian.org>
Bug: https://bugs.debian.org/1026680
Last-Update: 2023-02-04
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/setup.py
+++ b/setup.py
@@ -29,9 +29,9 @@
'rdfa1.1 = pyRdfa.rdflibparsers:RDFaParser',
'application/svg+xml = pyRdfa.rdflibparsers:RDFaParser',
'application/xhtml+xml = pyRdfa.rdflibparsers:RDFaParser',
- 'hturtle = pyRdfa.rdflibparsers:HTurtleParser'
- 'html = pyRdfa.rdflibparsers:StructuredDataParser'
- 'html/text = pyRdfa.rdflibparsers:StructuredDataParser'
+# 'hturtle = pyRdfa.rdflibparsers:HTurtleParser'
+# 'html = pyRdfa.rdflibparsers:StructuredDataParser'
+# 'html/text = pyRdfa.rdflibparsers:StructuredDataParser'
],
}
|