Skip to content

Commit 6f7ae21

Browse files
committed
Restricting rdflib package version to "<7"
The following test cases in prov/tests/qnames.py failed with rdflib.7.0.0: - test_namespace_inheritance - test_default_namespace_inheritance (found in issue #156)
1 parent 1cb710a commit 6f7ae21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ lxml>=3.3.5
22
networkx>=2.0
33
python-dateutil>=2.2
44
pydot>=1.2.0
5-
rdflib>=4.2.1
5+
rdflib>=4.2.1,<7

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
long_description = (here / "README.rst").read_text(encoding="utf-8")
1010

11-
requirements = ["python-dateutil>=2.2", "networkx>=2.0", "lxml>=3.3.5", "rdflib>=4.2.1"]
11+
requirements = ["python-dateutil>=2.2", "networkx>=2.0", "lxml>=3.3.5", "rdflib>=4.2.1,<7"]
1212

1313
test_requirements = ["pydot>=1.2.0"]
1414

0 commit comments

Comments
 (0)