Skip to content

Commit 4035c1c

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

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: python
22
python:
3-
- "3.6.5"
3+
- "3.7.1"
44
# command to install dependencies
55
install: "pip install -r requirements-dev.txt"
66
# 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)