Compare commits

...
2 Commits
Author SHA1 Message Date
Severiano Badajoz 27c34f4c1e bump version 2019-08-14 13:24:07 -07:00
Charlotte Weaver 1bec49a943 fix bad matplotlib library by installing scanpy first (#881) 2019-08-14 13:20:39 -07:00
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0
current_version = 0.11.1
[bumpversion:file:setup.py]
search = version="{current_version}"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "cellxgene",
"version": "0.11.0",
"version": "0.11.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "cellxgene",
"version": "0.11.0",
"version": "0.11.1",
"license": "MIT",
"description": "cellxgene is a web application for the interactive exploration of single cell sequence data.",
"repository": "https://github.com/chanzuckerberg/cellxgene",
+1 -1
View File
@@ -1 +1 @@
__version__ = "0.11.0"
__version__ = ""__version__ = "0.11.1""
+1 -1
View File
@@ -5,7 +5,7 @@ from .prepare import prepare
@click.group(name="cellxgene", context_settings=dict(max_content_width=85))
@click.version_option(version="0.11.0", prog_name="cellxgene", message="[%(prog)s] Version %(version)s")
@click.version_option(version="0.11.1", prog_name="cellxgene", message="[%(prog)s] Version %(version)s")
def cli():
pass
+1 -1
View File
@@ -6,10 +6,10 @@ Flask-Compress>=1.4.0
Flask-Cors>=3.0.6
Flask-RESTful>=0.3.6
flatbuffers>=1.10.0
scanpy>=1.3.7
matplotlib>=2.2
numpy>=1.15.2
pandas>=0.23.1
scanpy>=1.3.7
scipy>=1.1.0
scikit-learn>=0.19.1,!=0.20.0
tables==3.5.1
+1 -1
View File
@@ -8,7 +8,7 @@ with open("server/requirements.txt") as fh:
setup(
name="cellxgene",
version="0.11.0",
version="0.11.1",
packages=find_packages(),
url="https://github.com/chanzuckerberg/cellxgene",
license="MIT",