pyproject.toml: update dependencies

Most of these are minor and would have been selected by the semant-
ic version string during `poetry install`, but I want to make sure
that they are as current as possible before I leave the project.

In the case of Pandas 1.4.0 the minimum Python version is actually
only 3.8, so let's set that as the minimum.
This commit is contained in:
Alan Orth 2022-01-30 12:51:01 +03:00
parent ddc7596a09
commit 7488a24e34
1 changed files with 5 additions and 6 deletions

View File

@ -6,15 +6,14 @@ authors = ["Alan Orth <aorth@mjanja.ch>", "Marie-Angelique Laporte <m.a.laporte@
license = "GPL-3.0-only"
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^1.3.4"
ipykernel = "^6.4.2"
rdflib = "^6.0.2"
python = "^3.8"
pandas = "^1.4.0"
rdflib = "^6.1.1"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
isort = "^5.9.3"
black = "^21.9b0"
isort = "^5.10.1"
black = "^22.1.0"
csvkit = "^1.0.6"
[build-system]