1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2025-05-09 22:56:01 +02:00

Update requirements

Generated with poetry export:

    $ poetry export --without-hashes -f requirements.txt > requirements.txt
    $ poetry export --without-hashes --dev -f requirements.txt > requirements-dev.txt

I am trying `--without-hashes` to work around an error on pip install
when running in CI:

    ERROR: In --require-hashes mode, all requirements must have their versions pinned with ==.
This commit is contained in:
2021-02-04 21:46:49 +02:00
parent a458beac55
commit 0cd6d3dfe6
2 changed files with 59 additions and 59 deletions

View File

@ -1,15 +1,15 @@
certifi==2020.12.5
chardet==4.0.0
idna==2.10
certifi==2020.12.5; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
chardet==4.0.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
idna==2.10; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
langid==1.1.6
numpy==1.19.5
pandas==1.2.1
numpy==1.20.0; python_version >= "3.7" and python_full_version >= "3.7.1"
pandas==1.2.1; python_full_version >= "3.7.1"
pycountry==19.8.18
python-dateutil==2.8.1
python-dateutil==2.8.1; python_full_version >= "3.7.1"
python-stdnum==1.15
pytz==2020.5
requests==2.25.1
pytz==2021.1; python_full_version >= "3.7.1"
requests-cache==0.5.2
six==1.15.0
urllib3==1.26.2
xlrd==1.2.0
requests==2.25.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
six==1.15.0; python_full_version >= "3.7.1"
urllib3==1.26.3; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4"
xlrd==1.2.0; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")