From 90ef0f3fc922283a9e0725d6e604596846505757 Mon Sep 17 00:00:00 2001 From: Hans Ekkehard Plesser Date: Tue, 12 Dec 2023 17:16:56 +0100 Subject: [PATCH] Remove pathlib from requirements as it has been included in Python since Python 3.4 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b79992ea..adf7b645 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ with open('README.md') as f: description_text = f.read() -install_req = ["docopt", "lxml", "pathlib", "pyyaml>=5.1", "rdflib>=6.0.0"] +install_req = ["docopt", "lxml", "pyyaml>=5.1", "rdflib>=6.0.0"] # owlrl depends on rdflib; update any changes in requirements-test.txt as well. tests_req = ["owlrl", "pytest", "requests"] @@ -39,7 +39,7 @@ # rdflib usage; rdflib >= 6 does not support Python versions below 3.7. if _python_version.minor <= 6: # pyparsing needs to be pinned to 2.4.7 due to issues with the rdflib 5.0.0 library. - install_req = ["docopt", "lxml", "pathlib", "pyyaml>=5.1", "rdflib==5.0.0", "pyparsing==2.4.7"] + install_req = ["docopt", "lxml", "pyyaml>=5.1", "rdflib==5.0.0", "pyparsing==2.4.7"] # owlrl depends on rdflib and needs to be pinned to a corresponding version. tests_req = ["owlrl==5.2.3", "pytest", "requests"]