mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-27 13:18:12 +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,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