From 8de206204d176dd61087cc63ef33d6ed119f92ad Mon Sep 17 00:00:00 2001 From: kamangir Date: Sun, 13 Oct 2024 13:17:51 -0700 Subject: [PATCH] git refactor - kamangir/bolt#746 --- hubblescope/.abcli/actions.sh | 6 ++++-- hubblescope/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/hubblescope/.abcli/actions.sh b/hubblescope/.abcli/actions.sh index e315e44..be50acf 100644 --- a/hubblescope/.abcli/actions.sh +++ b/hubblescope/.abcli/actions.sh @@ -1,6 +1,8 @@ #! /usr/bin/env bash function hubble_action_git_before_push() { - [[ "$(abcli_git get_branch)" == "main" ]] && - hubble pypi build + [[ "$(abcli_git get_branch)" != "main" ]] && + return 0 + + hubble pypi build } diff --git a/hubblescope/__init__.py b/hubblescope/__init__.py index a8ced0d..a771a65 100644 --- a/hubblescope/__init__.py +++ b/hubblescope/__init__.py @@ -4,6 +4,6 @@ DESCRIPTION = f"{ICON} tools to access and process Hubble Space Telescope imagery and other datasets on AWS Open Data Registry." -VERSION = "4.42.1" +VERSION = "4.43.1" MARQUEE = "https://github.com/kamangir/hubble/raw/main/assets/hst/u4ge0106r_c0m.gif"