Skip to content

Commit

Permalink
:fix: corrupted commit
Browse files Browse the repository at this point in the history
  • Loading branch information
b3j0f committed Jul 7, 2015
1 parent 34bd60d commit 423cb1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions b3j0f/aop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
"""

__all__ = [
'version',
'__version__',
'weave', 'unweave', 'weave_on', 'get_advices',
'Advice',
'get_intercepted', 'is_intercepted',
'Joinpoint', 'JoinpointError'
]

# import project version
from setup import version
#: project version
__version__ = '0.7.8'

from .joinpoint import (
Joinpoint, get_intercepted, is_intercepted, JoinpointError
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))

from b3j0f.aop import version
from b3j0f.aop import __version__

# -- General configuration ------------------------------------------------

Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,9 @@
'aspect oriented programming', 'reflect', 'reflectivity'
]

version_info = (0, 7, 8, 'beta', 0)
version = '{0}.{1}.{2}'.format(*version_info)

setup(
name='b3j0f.aop',
version=version,
version='0.7.8',
install_requires=dependencies,
packages=find_packages(exclude=['test.*', '*.test.*']),
author="b3j0f",
Expand Down

0 comments on commit 423cb1c

Please sign in to comment.