python-feedgen/.travis.yml
Lars Kiesow 9440ccaffe
Update Python Versions
This patch updates the Python versions to test against, dropping the now
officially unsupported Python 2.7.
2020-01-25 22:27:58 +01:00

25 lines
433 B
YAML

language: python
dist: bionic
# https://devguide.python.org/#branchstatus
python:
- 3.6
- 3.7
- 3.8
install:
- pip install flake8 python-coveralls coverage liccheck
- pip install -r requirements.txt
- python setup.py bdist_wheel
- pip install dist/feedgen*
script:
- make test
- liccheck -s .licenses.ini
- python -m feedgen
- python -m feedgen atom
- python -m feedgen rss
after_success:
- coveralls