Skip to content

Commit b96ab6b

Browse files
committed
RLS: first release candidate for v0.12.0
1 parent 06a87f4 commit b96ab6b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
tseries: pandas/lib.pyx pandas/tslib.pyx pandas/hashtable.pyx
2+
python setup.py build_ext --inplace
3+
14
.PHONY : clean develop build clean clean_pyc tseries doc
25

36
clean: clean_pyc
@@ -7,9 +10,6 @@ clean: clean_pyc
710
clean_pyc:
811
-find . -name '*.pyc' -exec rm {} \; -or -name '*.pyo' -exec rm {} \;
912

10-
tseries: pandas/lib.pyx pandas/tslib.pyx pandas/hashtable.pyx
11-
python setup.py build_ext --inplace
12-
1313
sparse: pandas/src/sparse.pyx
1414
python setup.py build_ext --inplace
1515

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ def build_extensions(self):
189189
MAJOR = 0
190190
MINOR = 12
191191
MICRO = 0
192-
ISRELEASED = False
192+
ISRELEASED = True
193193
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
194-
QUALIFIER = ''
194+
QUALIFIER = 'rc1'
195195

196196
FULLVERSION = VERSION
197197
if not ISRELEASED:

0 commit comments

Comments
 (0)