From bc29ee860b89a6ea280b9e3a9ee06a001bfb17ce Mon Sep 17 00:00:00 2001 From: Alisson Date: Mon, 4 Mar 2024 14:23:48 -0300 Subject: [PATCH] add xlrd missing dependency --- poetry.lock | 18 +++++++++++++++++- pyproject.toml | 1 + 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 1c5532a..0f2bbcd 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2845,6 +2845,22 @@ files = [ {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, ] +[[package]] +name = "xlrd" +version = "2.0.1" +description = "Library for developers to extract data from Microsoft Excel (tm) .xls spreadsheet files" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "xlrd-2.0.1-py2.py3-none-any.whl", hash = "sha256:6a33ee89877bd9abc1158129f6e94be74e2679636b8a205b43b85206c3f0bbdd"}, + {file = "xlrd-2.0.1.tar.gz", hash = "sha256:f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88"}, +] + +[package.extras] +build = ["twine", "wheel"] +docs = ["sphinx"] +test = ["pytest", "pytest-cov"] + [[package]] name = "xlsxwriter" version = "3.1.9" @@ -2962,4 +2978,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = ">=3.10,<3.13" -content-hash = "0e6d5093c842e81dfb6223736bf05146fd0c1a125c089ad006505d876b135eba" +content-hash = "ef2a8fe841c241406573f67e3b818b0fdbfe71a059fa9c3f59ca3b548a6e4ca8" diff --git a/pyproject.toml b/pyproject.toml index 389f2ae..f1c7222 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ pydantic = "2.3.0" celery = "^5.3.6" redis = "^5.0.1" sentry-sdk = {extras = ["fastapi"], version = "^1.35.0"} +xlrd = "^2.0.1" [tool.poetry.group.dev.dependencies]