1
1
mirror of https://github.com/Kozea/WeasyPrint.git synced 2024-10-05 16:37:47 +03:00
WeasyPrint/.travis.yml
Guillaume Ayoub f53334ba0a Officially drop support of Python 2.6, 3.1 and 3.2
These old versions are not supported anymore since February 2016 for 3.2
and October 2013 (!) for 2.6. It's becoming even hard to use and to
test, as more and more libraries and tools (flake8 for example) decide
to drop the support of these versions too.
2016-07-28 18:25:12 +02:00

20 lines
363 B
YAML

language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
addons:
apt:
packages:
- ttf-dejavu
install:
- pip install --upgrade setuptools
- pip install pytest flake8 -e .
- mkdir -p ~/.fonts
- wget "https://github.com/Kozea/Ahem/blob/master/Ahem.ttf?raw=true" -O ~/.fonts/Ahem.ttf
script:
- py.test -s
- flake8 weasyprint
sudo: false