mirror of
https://github.com/codelucas/newspaper.git
synced 2025-08-05 03:08:32 +00:00

* Dropping python 3.4 support * Fixing build issues * Changed version number - incremented major version due to breaking change * Removing pandas dependency
12 lines
236 B
YAML
12 lines
236 B
YAML
language: python
|
|
python:
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
install:
|
|
- pip install -r requirements.txt coverage coveralls
|
|
- python download_corpora.py
|
|
script:
|
|
- coverage run --source newspaper tests/unit_tests.py
|
|
after_success:
|
|
coveralls
|