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

Add pyarrow extra to Python Pandas deps

This commit is contained in:
Alan Orth 2023-04-05 11:40:22 +03:00
parent c64b7eb1f1
commit 6fd1e1377f
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
4 changed files with 4 additions and 2 deletions

2
poetry.lock generated
View File

@ -1567,4 +1567,4 @@ test = ["pytest", "pytest-cov"]
[metadata]
lock-version = "2.0"
python-versions = "^3.9"
content-hash = "a05a18578e04e948d5021f49121af3c7af0150279279cf7f5b4663300ca47a9d"
content-hash = "2b40ec394cac8de3f8de5f6a583c45b273509d857cce05fa28a527cf572bb484"

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.0", extras = ["pyarrow"]}
python-stdnum = "^1.18"
requests = "^2.28.2"
requests-cache = "^0.9.8"

View File

@ -42,6 +42,7 @@ olefile==0.46 ; python_version >= "3.9" and python_version < "4.0"
openpyxl==3.1.2 ; python_version >= "3.9" and python_version < "4.0"
packaging==23.0 ; python_version >= "3.9" and python_version < "4.0"
pandas==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
pandas[pyarrow]==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
parsedatetime==2.6 ; python_version >= "3.9" and python_version < "4.0"
parso==0.8.3 ; python_version >= "3.9" and python_version < "4.0"
pathspec==0.11.1 ; python_version >= "3.9" and python_version < "4.0"

View File

@ -11,6 +11,7 @@ idna==3.4 ; python_version >= "3.9" and python_version < "4"
langid==1.1.6 ; python_version >= "3.9" and python_version < "4.0"
numpy==1.24.2 ; python_version >= "3.9" and python_version < "4.0"
pandas==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
pandas[pyarrow]==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
pycountry @ git+https://github.com/alanorth/pycountry@iso-codes-4.13.0 ; python_version >= "3.9" and python_version < "4.0"
python-dateutil==2.8.2 ; python_version >= "3.9" and python_version < "4.0"
python-stdnum==1.18 ; python_version >= "3.9" and python_version < "4.0"