Skip to content

Commit b72335d

Browse files
committed
REL Cut version 1.0.0.
1 parent f6a2dd1 commit b72335d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Only columns that are listed in the DataFrameMapper are kept. To keep a column b
161161
Working with sparse features
162162
****************************
163163

164-
``DataFrameMapper``s will return a dense feature array by default. Setting `sparse=True` in the mapper will return a sparse array whenever any of the extracted features is sparse. Example:
164+
``DataFrameMapper``s will return a dense feature array by default. Setting ``sparse=True`` in the mapper will return a sparse array whenever any of the extracted features is sparse. Example:
165165

166166
>>> mapper4 = DataFrameMapper([
167167
... ('pet', CountVectorizer()),
@@ -190,9 +190,10 @@ Sklearn-pandas' ``cross_val_score`` function provides exactly the same interface
190190
Changelog
191191
---------
192192

193-
0.0.14 (development)
194-
********************
193+
1.0.0 (2015-11-28)
194+
*******************
195195

196+
* Change version numbering scheme to SemVer.
196197
* Use ``sklearn.pipeline.Pipeline`` instead of copying its code. Resolves #43.
197198
* Raise ``KeyError`` when selecting unexistent columns in the dataframe. Fixes #30.
198199
* Return sparse feature array if any of the features is sparse and ``sparse`` argument is ``True``. Defaults to ``False`` to avoid potential breaking of existing code. Resolves #34.

sklearn_pandas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.0.12'
1+
__version__ = '1.0.0'
22

33
import numpy as np
44
import pandas as pd

0 commit comments

Comments
 (0)