Skip to content

Commit

Permalink
:add: revision version
Browse files Browse the repository at this point in the history
  • Loading branch information
b3j0f committed Jun 13, 2015
1 parent d216562 commit 92b1c36
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion b3j0f/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
# SOFTWARE.
# --------------------------------------------------------------------

__version__ = '0.9.1'
__version__ = '0.9.2'
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
ChangeLog
=========

0.9.2 (13/06/15)
----------------

- add dependency to ordereddict.

0.9.1 (13/06/15)
----------------

Expand Down
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,14 @@
'common'
]

dependencies = []

# add ordereddict only if version is 2.6.x
from sys import version_info
if version_info[:2] == (2, 6):
dependencies.append('ordereddict')
# add ordereddict if version for 2.6.x python version
dependencies = ['ordereddict']

description = 'Set of tools and utilities useful in python projects'

setup(
name='b3j0f.utils',
version='0.9.1',
version='0.9.2',
packages=find_packages(exclude=['test.*', '*.test.*']),
author='b3j0f',
author_email='jlabejof@yahoo.fr',
Expand Down

0 comments on commit 92b1c36

Please sign in to comment.