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
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: python
python:
- "2.6"
- "2.7"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install -r requirements.txt
before_script:
Expand Down
4 changes: 2 additions & 2 deletions rtkit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = 'Andrea De Marco <24erre@gmail.com>'
__version__ = '0.7.2'
__version__ = '0.7.3'
__classifiers__ = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand All @@ -11,7 +11,7 @@
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
]
__copyright__ = "2011 - 2017, %s " % __author__
__copyright__ = "2011 - 2019, %s " % __author__
__license__ = """
Copyright (C) %s

Expand Down
6 changes: 4 additions & 2 deletions rtkit/parser.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
try:
from itertools import filterfalse as ifilterfalse
from cStringIO import StringIO
except ImportError:
from itertools import ifilterfalse
from io import StringIO
try:
from itertools import ifilterfalse
except ImportError:
from itertools import filterfalse as ifilterfalse
import re
from rtkit import comment

Expand Down