mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-11-14 01:57:03 +01:00
Alan Orth
550ce7fb7e
The Unicode normalization feature requires Python 3.8 because the unicodedata.is_normalized() function only appears there. If I find another way to check if a string is normalized without normalizing it first I will drop the requirements back down to Python 3.6. See: https://docs.python.org/3/library/unicodedata.html
11 lines
173 B
YAML
11 lines
173 B
YAML
dist: bionic
|
|
language: python
|
|
python:
|
|
- "3.8"
|
|
install:
|
|
- "pip install -r requirements.txt"
|
|
- "pip install -r requirements-dev.txt"
|
|
script: pytest
|
|
|
|
# vim: ts=2 sw=2 et
|