mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-20 11:28:47 +08:00
build bug fixes (#438)
* Fixes compatibility conflict with numpy version and anndata version #434 * Forces description to be read as unicode fixes #435
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
anndata>=0.6.12
|
||||
anndata>=0.6.13
|
||||
click>=6.7
|
||||
Flask>=1.0.2
|
||||
Flask-Caching>=1.4.0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
with open("README.md", "rb") as fh:
|
||||
long_description = fh.read().decode()
|
||||
|
||||
with open("server/requirements.txt") as fh:
|
||||
requirements = fh.read().splitlines()
|
||||
|
||||
Reference in New Issue
Block a user