From 94872ac58cbbd2aeeb70f7ea14ad8cb67a9e1652 Mon Sep 17 00:00:00 2001 From: roryk Date: Mon, 27 Sep 2021 09:53:38 -0400 Subject: [PATCH] Prep for 1.0.8 release. --- HISTORY.md | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index b39b44b..fc7f5b3 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,6 @@ +## 1.0.8 +- Add support for dual UMI indexes. Thanks @lbeltrame! + ## 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. diff --git a/setup.py b/setup.py index dfd9990..9a4628a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def read(fname): setup( name='umis', - version='1.0.7', + version='1.0.8', 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'],