Skip to content

Commit 59d9021

Browse files
authored
Merge pull request #133 from scrapinghub/rdflib-version
Use rdflib < 5.0.0 as it removed the parsers
2 parents a365dc0 + 5bd4eb5 commit 59d9021

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# pip install -r requirements.txt
33
lxml
44
requests
5-
rdflib
5+
rdflib<5.0.0
66
rdflib-jsonld
77
mf2py>=1.1.0
88
six>=1.11

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ def get_version():
2828
},
2929
packages=find_packages(exclude=['tests',]),
3030
package_data={'extruct': ['VERSION']},
31-
install_requires=['lxml',
32-
'rdflib',
33-
'rdflib-jsonld',
34-
'mf2py',
31+
install_requires=['lxml',
32+
'rdflib<5.0.0',
33+
'rdflib-jsonld',
34+
'mf2py',
3535
'w3lib',
3636
'html-text>=0.5.1',
3737
'six'],

0 commit comments

Comments
 (0)