Skip to content

Commit dce700d

Browse files
committed
upgrade version
1 parent d2edf0d commit dce700d

File tree

2 files changed

+26
-17
lines changed

2 files changed

+26
-17
lines changed

HISTORY.rst

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,33 @@
55
History
66
=======
77

8-
current - 2021-01-01 - 0.00Mb
8+
current - 2021-10-26 - 0.00Mb
99
=============================
1010

11+
* #27: Fixes json parser when input is a stream (2021-10-26)
12+
* #26: Fixes bug while reading json (iterator failed to be created twice) (2021-10-26)
13+
* #25: Fixes documentation (2021-10-18)
14+
* #24: Implements a first version of sort_values. (2021-10-18)
15+
* #23: First version of operator __setitem__ (2021-10-16)
16+
* #22: Fixes nan values after pandas update, add documentation example to the unit tests (2021-07-11)
17+
* #21: Fixes grouping by nan values after update pandas to 1.3.0 (2021-07-10)
18+
* #17: Implements method describe (2021-04-08)
19+
1120
0.2.175 - 2020-08-06 - 0.03Mb
1221
=============================
1322

14-
* `16`: Unit tests failing with pandas 1.1.0. (2020-08-06)
15-
* `15`: implements parameter lines, flatten for read_json (2018-11-21)
16-
* `14`: implements fillna (2018-10-29)
17-
* `13`: implement concat for axis=0,1 (2018-10-26)
18-
* `12`: add groupby_streaming (2018-10-26)
19-
* `11`: add method add_column (2018-10-26)
20-
* `10`: plan B to bypass a bug in pandas about read_csv when iterator=True --> closed, pandas has a weird behaviour when names is too small compare to the number of columns (2018-10-26)
21-
* `9`: head is very slow (2018-10-26)
22-
* `8`: fix pandas_streaming for pandas 0.23.1 (2018-07-31)
23-
* `7`: implement read_json (2018-05-17)
24-
* `6`: add pandas_groupby_nan from pyensae (2018-05-17)
25-
* `5`: add random_state parameter to splitting functions (2018-02-04)
26-
* `2`: add method sample, resevoir sampling (2017-11-05)
27-
* `3`: method train_test_split for out-of-memory datasets (2017-10-21)
28-
* `1`: Excited for your project (2017-10-10)
23+
* #16: Unit tests failing with pandas 1.1.0. (2020-08-06)
24+
* #15: implements parameter lines, flatten for read_json (2018-11-21)
25+
* #14: implements fillna (2018-10-29)
26+
* #13: implement concat for axis=0,1 (2018-10-26)
27+
* #12: add groupby_streaming (2018-10-26)
28+
* #11: add method add_column (2018-10-26)
29+
* #10: plan B to bypass a bug in pandas about read_csv when iterator=True --> closed, pandas has a weird behaviour when names is too small compare to the number of columns (2018-10-26)
30+
* #9: head is very slow (2018-10-26)
31+
* #8: fix pandas_streaming for pandas 0.23.1 (2018-07-31)
32+
* #7: implement read_json (2018-05-17)
33+
* #6: add pandas_groupby_nan from pyensae (2018-05-17)
34+
* #5: add random_state parameter to splitting functions (2018-02-04)
35+
* #2: add method sample, resevoir sampling (2017-11-05)
36+
* #3: method train_test_split for out-of-memory datasets (2017-10-21)
37+
* #1: Excited for your project (2017-10-10)

pandas_streaming/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:epkg:`pandas` functionalites.
88
"""
99

10-
__version__ = "0.2.184"
10+
__version__ = "0.3.216"
1111
__author__ = "Xavier Dupré"
1212
__github__ = "https://github.com/sdpython/pandas_streaming"
1313
__url__ = "http://www.xavierdupre.fr/app/pandas_streaming/helpsphinx/index.html"

0 commit comments

Comments
 (0)