Skip to content

Commit d8195a6

Browse files
committed
chore: make it compatible with python 3.7
mostly due to outdated lxml version
1 parent 10997e9 commit d8195a6

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.5
1+
3.7.1

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
language: python
2+
dist: xenial
3+
sudo: required
24
python:
3-
- "3.6.5"
5+
- "3.6"
6+
- "3.7"
7+
- "3.7-dev"
48
# command to install dependencies
59
install: "pip install -r requirements-dev.txt"
610
# command to run tests

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ Markdown==2.6.11
22
beautifulsoup4==4.4.1
33
cssutils==1.0.1
44
inlinestyler==0.2.1
5-
lxml==3.5
5+
lxml>=3.5,<=4.2.5
66
pystache==0.5.4
77
parse==1.8.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from setuptools import setup, find_packages
33

4-
version = '0.3.1'
4+
version = '0.3.2'
55

66

77
def read(f):

0 commit comments

Comments
 (0)