Skip to content

Commit

Permalink
RLS: first release candidate for v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Jul 9, 2013
1 parent 06a87f4 commit b96ab6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
tseries: pandas/lib.pyx pandas/tslib.pyx pandas/hashtable.pyx
python setup.py build_ext --inplace

.PHONY : clean develop build clean clean_pyc tseries doc

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

tseries: pandas/lib.pyx pandas/tslib.pyx pandas/hashtable.pyx
python setup.py build_ext --inplace

sparse: pandas/src/sparse.pyx
python setup.py build_ext --inplace

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ def build_extensions(self):
MAJOR = 0
MINOR = 12
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''
QUALIFIER = 'rc1'

FULLVERSION = VERSION
if not ISRELEASED:
Expand Down

0 comments on commit b96ab6b

Please sign in to comment.