Skip to content

Commit

Permalink
Fix to make it compatible with Pandas 0.21.
Browse files Browse the repository at this point in the history
  • Loading branch information
miltondp committed Nov 1, 2018
1 parent c4f68b9 commit 88c09aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clustermatch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.1.4a1'
__version__ = '0.1.4a2'
__short_description__ = 'Efficient clustering method for processing highly diverse data'
2 changes: 1 addition & 1 deletion utils/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 88c09aa

Please sign in to comment.