mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 21:37:59 +08:00
* Small fix for handling display versions Making a distinction between __version__ and the version we display in the info panel (displayr_version). The hosted cellxgene can overwrite the display_version using a plugin. Improve version handling in the customized assets
7 lines
151 B
Python
7 lines
151 B
Python
from server.common.utils import import_plugins
|
|
|
|
__version__ = "0.15.0"
|
|
display_version = "cellxgene v" + __version__
|
|
|
|
import_plugins("server.plugins")
|