From 2aacc15cf53857964774c1de9802a43a9ccaf5de Mon Sep 17 00:00:00 2001 From: Brian Hie Date: Tue, 8 Mar 2022 22:56:19 +0000 Subject: [PATCH] update intervaltree dependency and version number --- scanorama/__init__.py | 2 +- setup.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/scanorama/__init__.py b/scanorama/__init__.py index f201c8e..3432c7e 100644 --- a/scanorama/__init__.py +++ b/scanorama/__init__.py @@ -1,3 +1,3 @@ from .scanorama import * -__version__ = '1.7.1' +__version__ = '1.7.2' diff --git a/setup.py b/setup.py index fcea193..9de1d59 100644 --- a/setup.py +++ b/setup.py @@ -2,16 +2,15 @@ setup( name='scanorama', - version='1.7.1', + version='1.7.2', description='Panoramic stitching of heterogeneous single cell transcriptomic data', url='https://github.com/brianhie/scanorama', - download_url='https://github.com/brianhie/scanorama/archive/v1.7.1.tar.gz', packages=find_packages(exclude=['bin', 'conf', 'data', 'target']), install_requires=[ 'annoy>=1.11.5', 'fbpca>=1.0', 'geosketch>=1.0', - 'intervaltree==2.1.0', + 'intervaltree>=3.1.0', 'matplotlib>=2.0.2', 'numpy>=1.12.0', 'scipy>=1.0.0',