Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Commit

Permalink
Bump version to 1.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
bow committed Jan 31, 2014
1 parent 93e8a39 commit cfb3e36
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions abifpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@

from sys import version_info

RELEASE = False
__version_info__ = ('1', '0', )
__version__ = '.'.join(__version_info__)
__version__ += '-dev' if not RELEASE else ''


__all__ = ['Trace']

# dictionary for deciding which values to extract and contain in self.data
Expand Down Expand Up @@ -65,9 +71,6 @@
# directory data structure
_DIRFMT = '>4sI2H4I'

__version__ = '0.9'


# to handle py3 IO
def py3_get_string(byte):
if version_info[0] < 3:
Expand Down

0 comments on commit cfb3e36

Please sign in to comment.