Skip to content

Commit

Permalink
version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Feb 20, 2011
1 parent d0792aa commit 4906ee7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions pandas/stats/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
FULL_SAMPLE = 0
ROLLING = 1
EXPANDING = 2

TIME = 0
ENTITY = 1

Expand All @@ -19,6 +15,10 @@ def _get_cluster_type(cluster_type):

raise Exception('Unrecognized clustering type: %s' % cluster_type)

FULL_SAMPLE = 0
ROLLING = 1
EXPANDING = 2

def _get_window_type(window_type):
if window_type in (FULL_SAMPLE, ROLLING, EXPANDING):
return window_type
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@
MAJOR = 0
MINOR = 3
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

FULLVERSION = VERSION
if not ISRELEASED:
# FULLVERSION += '.dev' + datetime.today().strftime('%Y%m%d')
FULLVERSION += '.beta2'
FULLVERSION += '.beta'

def write_version_py(filename='pandas/version.py'):
cnt = """\
Expand Down

0 comments on commit 4906ee7

Please sign in to comment.