1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2024-06-25 23:53:45 +02:00

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
This commit is contained in:
Alan Orth 2023-05-29 22:22:30 +03:00
parent be609a809d
commit bc470a4343
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -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"