Skip to content

Commit 4906ee7

Browse files
committed
version 0.3.0
1 parent d0792aa commit 4906ee7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pandas/stats/common.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
FULL_SAMPLE = 0
2-
ROLLING = 1
3-
EXPANDING = 2
4-
51
TIME = 0
62
ENTITY = 1
73

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

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

18+
FULL_SAMPLE = 0
19+
ROLLING = 1
20+
EXPANDING = 2
21+
2222
def _get_window_type(window_type):
2323
if window_type in (FULL_SAMPLE, ROLLING, EXPANDING):
2424
return window_type

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@
4949
MAJOR = 0
5050
MINOR = 3
5151
MICRO = 0
52-
ISRELEASED = False
52+
ISRELEASED = True
5353
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
5454

5555
FULLVERSION = VERSION
5656
if not ISRELEASED:
5757
# FULLVERSION += '.dev' + datetime.today().strftime('%Y%m%d')
58-
FULLVERSION += '.beta2'
58+
FULLVERSION += '.beta'
5959

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

0 commit comments

Comments
 (0)