Skip to content

Commit

Permalink
Merge pull request #133 from scrapinghub/rdflib-version
Browse files Browse the repository at this point in the history
Use rdflib < 5.0.0 as it removed the parsers
  • Loading branch information
kmike committed Apr 20, 2020
2 parents a365dc0 + 5bd4eb5 commit 59d9021
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# pip install -r requirements.txt
lxml
requests
rdflib
rdflib<5.0.0
rdflib-jsonld
mf2py>=1.1.0
six>=1.11
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ def get_version():
},
packages=find_packages(exclude=['tests',]),
package_data={'extruct': ['VERSION']},
install_requires=['lxml',
'rdflib',
'rdflib-jsonld',
'mf2py',
install_requires=['lxml',
'rdflib<5.0.0',
'rdflib-jsonld',
'mf2py',
'w3lib',
'html-text>=0.5.1',
'six'],
Expand Down

0 comments on commit 59d9021

Please sign in to comment.