Skip to content

Commit 13f5db0

Browse files
committed
RLS: Version 0.7.0
1 parent fbb6a1d commit 13f5db0

File tree

4 files changed

+23
-31
lines changed

4 files changed

+23
-31
lines changed

doc/make.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,21 @@ def upload_dev():
3535
os.system('cd build/html; rsync -avz . pandas@pandas.pydata.org'
3636
':/usr/share/nginx/pandas/pandas-docs/dev/ -essh')
3737

38+
def upload_dev_pdf():
39+
'push a copy to the pydata dev directory'
40+
os.system('cd build/latex; scp pandas.pdf pandas@pandas.pydata.org'
41+
':/usr/share/nginx/pandas/pandas-docs/dev/')
42+
3843
def upload_stable():
3944
'push a copy to the pydata dev directory'
4045
os.system('cd build/html; rsync -avz . pandas@pandas.pydata.org'
4146
':/usr/share/nginx/pandas/pandas-docs/stable/ -essh')
4247

48+
def upload_stable_pdf():
49+
'push a copy to the pydata dev directory'
50+
os.system('cd build/latex; scp pandas.pdf pandas@pandas.pydata.org'
51+
':/usr/share/nginx/pandas/pandas-docs/stable/')
52+
4353
def sfpdf():
4454
'push a copy to the sf site'
4555
os.system('cd build/latex; scp pandas.pdf wesmckinn,pandas@web.sf.net'
@@ -96,6 +106,8 @@ def all():
96106
'html' : html,
97107
'upload_dev' : upload_dev,
98108
'upload_stable' : upload_stable,
109+
'upload_dev_pdf' : upload_dev_pdf,
110+
'upload_stable_pdf' : upload_stable_pdf,
99111
'latex' : latex,
100112
'clean' : clean,
101113
'sf' : sf,

doc/source/whatsnew/v0.6.1.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@ Performance improvements
4343
- Optimize scalar value lookups in the general case by 25% or more in Series
4444
and DataFrame
4545

46-
.. image:: vbench/figures/series_getitem_scalar.png
47-
:width: 6in
48-
49-
.. image:: vbench/figures/datamatrix_getitem_scalar.png
50-
:width: 6in
51-
5246
- Fix performance regression in cross-sectional count in DataFrame, affecting
5347
DataFrame.dropna speed
5448
- Column deletion in DataFrame copies no data (computes views on blocks) (GH

doc/source/whatsnew/v0.7.0.txt

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -241,23 +241,10 @@ Other API Changes
241241
Performance improvements
242242
~~~~~~~~~~~~~~~~~~~~~~~~
243243

244-
:ref:`Cythonized GroupBy aggregations <groupby.aggregate.cython>` no longer
245-
presort the data, thus achieving a significant speedup (GH93_). Here's a
246-
graph of the performance of this operation over time on a dataset with 100,000
247-
rows and 10,000 unique groups:
248-
249-
.. image:: vbench/figures/groupby_multi_cython.png
250-
:width: 6in
251-
252-
On this similar vein,
253-
254-
GroupBy aggregations with Python functions significantly sped up by clever
255-
manipulation of the ndarray data type in Cython (GH496_). Benchmark of a
256-
similar operation to the above but using a Python function:
257-
258-
.. image:: vbench/figures/groupby_multi_python.png
259-
:width: 6in
260-
244+
- :ref:`Cythonized GroupBy aggregations <groupby.aggregate.cython>` no longer
245+
presort the data, thus achieving a significant speedup (GH93_). GroupBy
246+
aggregations with Python functions significantly sped up by clever
247+
manipulation of the ndarray data type in Cython (GH496_).
261248
- Better error message in DataFrame constructor when passed column labels
262249
don't match data (GH497_)
263250
- Substantially improve performance of multi-GroupBy aggregation when a

setup.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,9 @@
147147

148148
DISTNAME = 'pandas'
149149
LICENSE = 'BSD'
150-
AUTHOR = "The pandas Development Team"
151-
MAINTAINER = "Wes McKinney"
152-
MAINTAINER_EMAIL = "wesmckinn@gmail.com"
153-
URL = "http://pandas.sourceforge.net"
150+
AUTHOR = "The PyData Development Team"
151+
EMAIL = "pystatsmodels@googlegroups.com"
152+
URL = "http://pandas.pydata.org"
154153
DOWNLOAD_URL = ''
155154
CLASSIFIERS = [
156155
'Development Status :: 4 - Beta',
@@ -167,9 +166,9 @@
167166
MAJOR = 0
168167
MINOR = 7
169168
MICRO = 0
170-
ISRELEASED = False
169+
ISRELEASED = True
171170
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
172-
QUALIFIER = 'rc1'
171+
QUALIFIER = ''
173172

174173
FULLVERSION = VERSION
175174
if not ISRELEASED:
@@ -373,7 +372,7 @@ def srcpath(name=None, suffix='.pyx', subdir='src'):
373372
write_version_py()
374373
setup(name=DISTNAME,
375374
version=FULLVERSION,
376-
maintainer=MAINTAINER,
375+
maintainer=AUTHOR,
377376
packages=['pandas',
378377
'pandas.core',
379378
'pandas.io',
@@ -395,7 +394,7 @@ def srcpath(name=None, suffix='.pyx', subdir='src'):
395394
'pandas.tests' : ['data/*.pickle']
396395
},
397396
ext_modules=extensions,
398-
maintainer_email=MAINTAINER_EMAIL,
397+
maintainer_email=EMAIL,
399398
description=DESCRIPTION,
400399
license=LICENSE,
401400
cmdclass = cmdclass,

0 commit comments

Comments
 (0)