Skip to content

Commit

Permalink
Restricting rdflib package version to "<7"
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
trungdong committed May 11, 2024
1 parent 1cb710a commit 6f7ae21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ lxml>=3.3.5
networkx>=2.0
python-dateutil>=2.2
pydot>=1.2.0
rdflib>=4.2.1
rdflib>=4.2.1,<7
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

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

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

test_requirements = ["pydot>=1.2.0"]

Expand Down

0 comments on commit 6f7ae21

Please sign in to comment.