This is an automated email from the ASF dual-hosted git repository. rkk pushed a commit to branch SDAP-511-b in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git
commit 67b79317056d985c3638cf841c045ea951c3b1eb Author: rileykk <[email protected]> AuthorDate: Thu Feb 29 07:28:03 2024 -0800 Revert "banner" This reverts commit 2fa21fbb0a20d545abae70865e07ac9c04ba154e. --- analysis/webservice/webapp.py | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/analysis/webservice/webapp.py b/analysis/webservice/webapp.py index f3608c8..f0da8d9 100644 --- a/analysis/webservice/webapp.py +++ b/analysis/webservice/webapp.py @@ -27,27 +27,6 @@ from analysis.webservice.redirect import RemoteCollectionMatcher from analysis.webservice.nexus_tornado.app_builders import NexusAppBuilder from analysis.webservice.nexus_tornado.app_builders import RedirectAppBuilder -try: - from importlib.metadata import version as _version - from importlib.metadata import files as _files -except ImportError: - from importlib_metadata import version as _version - -try: - __version__ = _version('nexusanalysis') -except Exception: - __version__ = 'Cannot be determined' - -banner = [ - '', - ' ____ ____ _ ____ | ', - '/ ___|| _ \\ / \\ | _ \\ | Apache SDAP', - '\\___ \\| | | |/ _ \\ | |_) | | Science Data Analytics Platform', - f' ___) | |_| / ___ \\| __/ | Version: {__version__}', - '|____/|____/_/ \\_\\_| | ', - '' -] - def inject_args_in_config(args, config): """
