From bc470a4343a115c48d4ad42f131a10cc43439aa4 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 29 May 2023 22:22:30 +0300 Subject: [PATCH] pyproject.toml: rework pandas and pyarrow We don't explicitly depend on PyArrow. It should come as a pandas extra. I installed it like this: $ poetry add pandas=="^2.0.2[feather,performance]" See: https://pandas.pydata.org/docs/getting_started/install.html#other-data-sources --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5ca28e2..a3b5b7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ csv-metadata-quality = 'csv_metadata_quality.__main__:main' [tool.poetry.dependencies] python = "^3.9" -pandas = "^2.0.0" +pandas = {version = "^2.0.2", extras = ["feather", "performance"]} python-stdnum = "^1.18" requests = "^2.28.2" requests-cache = "^0.9.8" @@ -21,7 +21,6 @@ colorama = "^0.4.6" ftfy = "^6.1.1" country-converter = "~1.0.0" pycountry = {git = "https://github.com/alanorth/pycountry", rev = "iso-codes-4.13.0"} -pyarrow = "^11.0.0" [tool.poetry.group.dev.dependencies] pytest = "^7.2.1"