Skip to content

Commit 90ef0f3

Browse files
committed
Remove pathlib from requirements as it has been included in Python since Python 3.4
1 parent 5213865 commit 90ef0f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
with open('README.md') as f:
3232
description_text = f.read()
3333

34-
install_req = ["docopt", "lxml", "pathlib", "pyyaml>=5.1", "rdflib>=6.0.0"]
34+
install_req = ["docopt", "lxml", "pyyaml>=5.1", "rdflib>=6.0.0"]
3535
# owlrl depends on rdflib; update any changes in requirements-test.txt as well.
3636
tests_req = ["owlrl", "pytest", "requests"]
3737

3838
# Keep support for for Python versions below 3.7; relevant for the
3939
# rdflib usage; rdflib >= 6 does not support Python versions below 3.7.
4040
if _python_version.minor <= 6:
4141
# pyparsing needs to be pinned to 2.4.7 due to issues with the rdflib 5.0.0 library.
42-
install_req = ["docopt", "lxml", "pathlib", "pyyaml>=5.1", "rdflib==5.0.0", "pyparsing==2.4.7"]
42+
install_req = ["docopt", "lxml", "pyyaml>=5.1", "rdflib==5.0.0", "pyparsing==2.4.7"]
4343

4444
# owlrl depends on rdflib and needs to be pinned to a corresponding version.
4545
tests_req = ["owlrl==5.2.3", "pytest", "requests"]

0 commit comments

Comments
 (0)