diff --git a/HISTORY.md b/HISTORY.md index 1b9e383..b39b44b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +## 1.0.7 +- Ensure headers are not written when writing out a Series, to make us compatible with pandas > 0.24. +- Fix for deprecated .ix call, .loc is the new replacement. Thanks to @naumenko-sa. + ## 1.0.6 - Fix for the python3 fix. diff --git a/setup.py b/setup.py index 62b18bf..dfd9990 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def read(fname): setup( name='umis', - version='1.0.6', + version='1.0.7', description='Package for estimating UMI counts in Transcript Tag Counting data.', packages=find_packages(), install_requires=['click', 'pysam>=0.8.3', 'pandas', 'regex', 'scipy', 'toolz'], diff --git a/umis/umis.py b/umis/umis.py index 4894cde..d332d78 100644 --- a/umis/umis.py +++ b/umis/umis.py @@ -24,7 +24,7 @@ import scipy.io, scipy.sparse import click -VERSION = "1.0.6" +VERSION = "1.0.7" logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__)