Skip to content

Commit

Permalink
:add: support of python2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
b3j0f committed Dec 20, 2015
1 parent 76a4b2c commit e884802
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: python
python:
#- "2.6"
- "2.6"
- "2.7"
# - "3.2"
- "3.3"
Expand Down
2 changes: 1 addition & 1 deletion b3j0f/conf/model/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

__all__ = ['ModelElement', 'CompositeModelElement']

from collections import OrderedDict
from future.moves.collections import OrderedDict


class ModelElement(object):
Expand Down
5 changes: 5 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
ChangeLog
=========

0.2.3 (2015/12/20)
------------------

- add support for python2.6.

0.2.2 (2015/12/16)
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
'Topic :: Software Development',
'Intended Audience :: Developers',
'Programming Language :: Python',
#'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
Expand Down

0 comments on commit e884802

Please sign in to comment.