Skip to content

Commit

Permalink
use boltons' backport of total_ordering to enable py26 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmoud committed Jul 19, 2016
1 parent 9553fdd commit f0fdc32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lithoxyl/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-

import time
from functools import total_ordering
from boltons.funcutils import total_ordering


EVENTS = ('begin', 'warn', 'end', 'exception', 'comment')
IMPORT_TIME = time.time()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
author_email=__contact__,
url=__url__,
packages=find_packages(),
install_requires=['boltons>=16.4.0'],
install_requires=['boltons>=16.5.0'],
include_package_data=True,
zip_safe=False,
license=__license__,
Expand Down

0 comments on commit f0fdc32

Please sign in to comment.