From 15ddcab27e75bf98c4d1b85106e933d29d10fa2b Mon Sep 17 00:00:00 2001 From: David Douard <david.douard@sdfa3.org> Date: Thu, 24 Oct 2024 18:25:51 +0200 Subject: [PATCH] Enforce rdflib < 7.1 to prevent doctest breakage This is only a workaround until these tests are properly fixed. They should probably be converted as actual (py)tests; it would make it easier to support these types of breakage due to formatting changes in rdflib... --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c5529a47..0c4effa6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ frozendict != 2.1.2 iso8601 pybtex pyld -rdflib +rdflib < 7.1 # 7.1 breaks doctests; to remove when fixed sentry-sdk typing-extensions xmltodict -- GitLab