mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-18 06:17:59 +08:00
* Bump version: 0.18.0 → 0.19.0-rc.0 * release can 0.19.0 * Bump version: 0.19.0-rc.0 → 0.19.0-rc.1 * bump rc * Bump version: 0.19.0-rc.1 → 0.19.0 * release final
14 lines
377 B
Python
14 lines
377 B
Python
import logging
|
|
import sys
|
|
from server.common.utils.utils import import_plugins
|
|
|
|
__version__ = "0.19.0"
|
|
display_version = "cellxgene v" + __version__
|
|
|
|
try:
|
|
import_plugins("server.plugins")
|
|
except Exception as e:
|
|
# Make sure to exit in this case, as the server may not be configured as expected.
|
|
logging.critical(f"Error in import_plugins: {str(e)}")
|
|
sys.exit(1)
|