From 67726a0c506870f5eb0c96c27c531d390c354361 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Tue, 25 May 2021 08:06:34 +0200 Subject: [PATCH] Add tabulate to the dependencies --- poetry.lock | 17 ++++++++++++++++- pyproject.toml | 1 + 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index eb5515a..a36f36d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -973,6 +973,17 @@ category = "main" optional = false python-versions = ">=3.5" +[[package]] +name = "tabulate" +version = "0.8.9" +description = "Pretty-print tabular data" +category = "main" +optional = false +python-versions = "*" + +[package.extras] +widechars = ["wcwidth"] + [[package]] name = "terminado" version = "0.10.0" @@ -1078,7 +1089,7 @@ python-versions = "*" [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "7cdb41f1f2a559778742aa22827430d998959cfbf28ceb15fd6183e7bbaf4673" +content-hash = "8c67bc6cefdeaad5c4dba50c8495947be779d2dc5f89e4b496c7942d0c535b7b" [metadata.files] anyio = [ @@ -1729,6 +1740,10 @@ sniffio = [ {file = "sniffio-1.2.0-py3-none-any.whl", hash = "sha256:471b71698eac1c2112a40ce2752bb2f4a4814c22a54a3eed3676bc0f5ca9f663"}, {file = "sniffio-1.2.0.tar.gz", hash = "sha256:c4666eecec1d3f50960c6bdf61ab7bc350648da6c126e3cf6898d8cd4ddcd3de"}, ] +tabulate = [ + {file = "tabulate-0.8.9-py3-none-any.whl", hash = "sha256:d7c013fe7abbc5e491394e10fa845f8f32fe54f8dc60c6622c6cf482d25d47e4"}, + {file = "tabulate-0.8.9.tar.gz", hash = "sha256:eb1d13f25760052e8931f2ef80aaf6045a6cceb47514db8beab24cded16f13a7"}, +] terminado = [ {file = "terminado-0.10.0-py3-none-any.whl", hash = "sha256:048ce7b271ad1f94c48130844af1de163e54913b919f8c268c89b36a6d468d7c"}, {file = "terminado-0.10.0.tar.gz", hash = "sha256:46fd07c9dc7db7321922270d544a1f18eaa7a02fd6cd4438314f27a687cabbea"}, diff --git a/pyproject.toml b/pyproject.toml index 13770fd..ba8befa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ missingno = "^0.4.2" numpy = "^1.20.3" pandas = "^1.2.4" requests = "^2.25.1" +tabulate = "^0.8.9" [tool.poetry.dev-dependencies] black = "^21.5b1"