diff --git a/.python-version b/.python-version index d15b8b0..a76ccff 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.6.5 +3.7.1 diff --git a/.travis.yml b/.travis.yml index c2d6da6..60298b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,10 @@ language: python +dist: xenial +sudo: required python: - - "3.6.5" + - "3.6" + - "3.7" + - "3.7-dev" # command to install dependencies install: "pip install -r requirements-dev.txt" # command to run tests diff --git a/requirements.txt b/requirements.txt index 11822e8..8b95297 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,6 @@ Markdown==2.6.11 beautifulsoup4==4.4.1 cssutils==1.0.1 inlinestyler==0.2.1 -lxml==3.5 +lxml>=3.5,<=4.2.5 pystache==0.5.4 parse==1.8.2 diff --git a/setup.py b/setup.py index 6aa6558..e4871fe 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import os from setuptools import setup, find_packages -version = '0.3.1' +version = '0.3.2' def read(f):