File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- FULL_SAMPLE = 0
2
- ROLLING = 1
3
- EXPANDING = 2
4
-
5
1
TIME = 0
6
2
ENTITY = 1
7
3
@@ -19,6 +15,10 @@ def _get_cluster_type(cluster_type):
19
15
20
16
raise Exception ('Unrecognized clustering type: %s' % cluster_type )
21
17
18
+ FULL_SAMPLE = 0
19
+ ROLLING = 1
20
+ EXPANDING = 2
21
+
22
22
def _get_window_type (window_type ):
23
23
if window_type in (FULL_SAMPLE , ROLLING , EXPANDING ):
24
24
return window_type
Original file line number Diff line number Diff line change 49
49
MAJOR = 0
50
50
MINOR = 3
51
51
MICRO = 0
52
- ISRELEASED = False
52
+ ISRELEASED = True
53
53
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
54
54
55
55
FULLVERSION = VERSION
56
56
if not ISRELEASED :
57
57
# FULLVERSION += '.dev' + datetime.today().strftime('%Y%m%d')
58
- FULLVERSION += '.beta2 '
58
+ FULLVERSION += '.beta '
59
59
60
60
def write_version_py (filename = 'pandas/version.py' ):
61
61
cnt = """\
You can’t perform that action at this time.
0 commit comments