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:
Charlotte Weaver
2018-11-14 14:21:02 -08:00
committed by GitHub
parent 00a68276a2
commit 07cda497d9
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
anndata>=0.6.12
anndata>=0.6.13
click>=6.7
Flask>=1.0.2
Flask-Caching>=1.4.0
+2 -2
View File
@@ -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()