From 88c09aa1f48b2317e0707d4e429897d0825ed31c Mon Sep 17 00:00:00 2001 From: Milton Pividori Date: Wed, 31 Oct 2018 23:52:34 -0500 Subject: [PATCH] Fix to make it compatible with Pandas 0.21. --- clustermatch/__init__.py | 2 +- utils/data.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clustermatch/__init__.py b/clustermatch/__init__.py index 5d73230..6df9772 100644 --- a/clustermatch/__init__.py +++ b/clustermatch/__init__.py @@ -1,2 +1,2 @@ -__version__ = '0.1.4a1' +__version__ = '0.1.4a2' __short_description__ = 'Efficient clustering method for processing highly diverse data' diff --git a/utils/data.py b/utils/data.py index 81921d5..8efe6c3 100644 --- a/utils/data.py +++ b/utils/data.py @@ -104,7 +104,7 @@ def merge_sources(source_files, rep_merge=np.mean): sources_names = [sn for sn_idx, sn in enumerate(sources_names) for i in range(processed_sources[sn_idx].shape[0])] - full_sources = pd.concat(processed_sources, sort=True) + full_sources = pd.concat(processed_sources) # renamed duplicated if not full_sources.index.is_unique: