640231b23a
Python 3.3 reached end-of-life on 2017-09-29. Since it's now causing problems with Travis builds, this patch is dropping that version from builds.
24 lines
373 B
YAML
24 lines
373 B
YAML
language: python
|
|
|
|
sudo: false
|
|
|
|
# https://devguide.python.org/#branchstatus
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
install:
|
|
- pip install flake8 python-coveralls coverage
|
|
- python setup.py bdist_wheel
|
|
- pip install dist/feedgen*
|
|
|
|
script:
|
|
- make test
|
|
- python -m feedgen
|
|
- python -m feedgen atom
|
|
- python -m feedgen rss
|
|
|
|
after_success:
|
|
- coveralls
|