Skip to content

Commit 3e0af86

Browse files
authored
Merge pull request #214 from AKSW/feature/updateRequirementsTxt
Update requirements.txt to use a patched rdflib
2 parents 3100641 + 5201686 commit 3e0af86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Flask-API>=0.6.4
22
pyyaml
3-
rdflib>=4.2.2
3+
git+https://github.com/white-gecko/rdflib@merge/forQuit#egg=rdflib
44
rfc3987
55
flask-cors
66
pygit2==0.27.2

tests/test_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ def testBlame(self):
798798
self.assertEqual(
799799
results['date']['datatype'], 'http://www.w3.org/2001/XMLSchema#dateTime'
800800
)
801-
self.assertEqual(results['date']['type'], 'typed-literal')
801+
self.assertIn(results['date']['type'], ['typed-literal', 'literal'])
802802

803803
del results['date']
804804

0 commit comments

Comments
 (0)