mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-11-04 21:43:00 +01: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:
parent
be609a809d
commit
bc470a4343
@ -12,7 +12,7 @@ csv-metadata-quality = 'csv_metadata_quality.__main__:main'
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.9"
|
python = "^3.9"
|
||||||
pandas = "^2.0.0"
|
pandas = {version = "^2.0.2", extras = ["feather", "performance"]}
|
||||||
python-stdnum = "^1.18"
|
python-stdnum = "^1.18"
|
||||||
requests = "^2.28.2"
|
requests = "^2.28.2"
|
||||||
requests-cache = "^0.9.8"
|
requests-cache = "^0.9.8"
|
||||||
@ -21,7 +21,6 @@ colorama = "^0.4.6"
|
|||||||
ftfy = "^6.1.1"
|
ftfy = "^6.1.1"
|
||||||
country-converter = "~1.0.0"
|
country-converter = "~1.0.0"
|
||||||
pycountry = {git = "https://github.com/alanorth/pycountry", rev = "iso-codes-4.13.0"}
|
pycountry = {git = "https://github.com/alanorth/pycountry", rev = "iso-codes-4.13.0"}
|
||||||
pyarrow = "^11.0.0"
|
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
pytest = "^7.2.1"
|
pytest = "^7.2.1"
|
||||||
|
Loading…
Reference in New Issue
Block a user