From d092f83cda393b3ca250bd0d65986b551145e584 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 2 Dec 2021 12:53:25 +0200 Subject: [PATCH] pyproject.toml: adjust dependencies Remove pylode because Marie says she was only using it for the HTML docs, but I'm doing that differently now. This means we can have a direct dependency on rdflib now. Also, move isort and black to dev dependencies because nobody will need them except me. :) --- pyproject.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c92a7ae3..15738305 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,15 +8,13 @@ license = "GPL-3.0-only" [tool.poetry.dependencies] python = "^3.9" pandas = "^1.3.4" -# Explicitly install pylode, which installs rdflib. If we install rdflib first -# there is currently some kind of dependency issue due to version conflicts. -pylode = "^2.12.0" -isort = "^5.9.3" -black = "^21.9b0" openpyxl = "^3.0.9" ipykernel = "^6.4.2" +rdflib = "^6.0.2" [tool.poetry.dev-dependencies] +isort = "^5.9.3" +black = "^21.9b0" [build-system] requires = ["poetry-core>=1.0.0"]