Skip to content

Commit

Permalink
Prep 1.0.7 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
roryk committed Mar 28, 2020
1 parent 5a09959 commit 5bcb3b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
2 changes: 1 addition & 1 deletion umis/umis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down

0 comments on commit 5bcb3b0

Please sign in to comment.