Skip to content

Commit

Permalink
bump version for 19.2.0 release, clean up imports, add py37 to tox ma…
Browse files Browse the repository at this point in the history
…trix
  • Loading branch information
mahmoud committed Feb 27, 2019
1 parent e93cc9d commit 6d23176
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions ashes.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,24 @@
import re
import sys
import json
import time
import codecs
import pprint
import string
import fnmatch
import time

try:
from html import escape as html_escape
except ImportError:
from cgi import escape as html_escape

PY3 = (sys.version_info[0] == 3)
if PY3:
unicode, string_types = str, (str, bytes)
from html import escape as html_escape
else:
string_types = (str, unicode)
from cgi import escape as html_escape

__version__ = '17.0.1dev'
__version__ = '19.2.0'
__author__ = 'Mahmoud Hashemi'
__contact__ = 'mahmoudrhashemi@gmail.com'
__contact__ = 'mahmoud@hatnote.com'
__url__ = 'https://github.com/mahmoud/ashes'
__license__ = 'BSD'

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[tox]
envlist = py27,py34,pypy
envlist = py27,py34,py37,pypy
[testenv]
commands=./run_tests.py --run_unittests

0 comments on commit 6d23176

Please sign in to comment.