Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.5
3.7.1
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from setuptools import setup, find_packages

version = '0.3.1'
version = '0.3.2'


def read(f):
Expand Down