Skip to content

Commit 437ee02

Browse files
authored
Prepare release 0.12.7 (#510)
* Add python3 option in %manage_spark magic (#427) Fixes #420 * Links fixed in README * DataError in Pandas moved from core.groupby to core.base (#459) * DataError in Pandas moved from core.groupby to core.base * maintain backwards compatability with Pandas 0.22 or lower for DataError * Bump autoviz version to 0.12.6 * Fix unit test failure caused by un-spec'ed mock which fails traitlet validation (#480) * Fix failing unit tests Caused by an un-spec'ed mock in a test which fails traitlet validation * Bump travis.yml Python3 version to 3.6 Python 3.3 is not only EOL'ed but is now actively unsupported by Tornado, which causes the Travis build to fail again. * Bumping version numbers for hdijupyterutils and sparkmagic to keep them in sync * Add Gitter badge (#482) * Fix decode json error at trailing empty line (#483) * Bump version number to 0.12.7
1 parent 89ecb50 commit 437ee02

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/jupyter-incubator/sparkmagic.svg?branch=master)](https://travis-ci.org/jupyter-incubator/sparkmagic)
1+
[![Build Status](https://travis-ci.org/jupyter-incubator/sparkmagic.svg?branch=master)](https://travis-ci.org/jupyter-incubator/sparkmagic) [![Join the chat at https://gitter.im/sparkmagic/Lobby](https://badges.gitter.im/sparkmagic/Lobby.svg)](https://gitter.im/sparkmagic/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
22

33
# sparkmagic
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.12.6'
1+
__version__ = '0.12.7'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.12.6'
1+
__version__ = '0.12.7'

sparkmagic/sparkmagic/__init__.py

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

33
from sparkmagic.serverextension.handlers import load_jupyter_server_extension
44

sparkmagic/sparkmagic/utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def records_to_dataframe(records_text, kind, coerce=None):
5353
if records_text in ['', '[]']:
5454
strings = []
5555
else:
56-
strings = records_text.split('\n')
56+
strings = records_text.strip().split('\n')
5757
try:
5858
data_array = [json.JSONDecoder(object_pairs_hook=OrderedDict).decode(s) for s in strings]
5959

0 commit comments

Comments
 (0)