Skip to content

Commit

Permalink
:fix: wrong import of the builtins module in python2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
b3j0f committed Jan 28, 2016
1 parent 7379407 commit bc1949c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion b3j0f/aop/joinpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

from opcode import opmap

import builtins
from six.moves import builtins

from types import MethodType, FunctionType

Expand Down
2 changes: 1 addition & 1 deletion b3j0f/aop/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
# thanks to https://github.com/pycontribs/jira/blob/master/jira/version.py

#: project version
__version__ = '0.8.0'
__version__ = '0.8.1'
6 changes: 6 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

0.8.1 (2016/01/28)
------------------

- fix wrong import of builtins in python2.7.
- add tox file for a better multi-test environment.

0.8.0 (2015/11/09)
------------------

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
],
test_suite='b3j0f',
keywords=KEYWORDS
Expand Down
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[tox]
envlist=py27,py30,py31,py34,cpython
[testenv]
commands=python setup.py test
usedevelop=True
recreate=True

0 comments on commit bc1949c

Please sign in to comment.