From 65c8cf74df655b2fb81b4b589e7200871e98beae Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Wed, 2 Oct 2024 17:40:50 -0800 Subject: [PATCH 1/2] drop format script and drop poetry from verify_tag.sh --- scripts/format.sh | 5 ----- scripts/verify_tag.sh | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100755 scripts/format.sh diff --git a/scripts/format.sh b/scripts/format.sh deleted file mode 100755 index 631d46b5..00000000 --- a/scripts/format.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -e -set -x - -ruff check --fix . -ruff format . diff --git a/scripts/verify_tag.sh b/scripts/verify_tag.sh index 37b1b363..248bf4c6 100755 --- a/scripts/verify_tag.sh +++ b/scripts/verify_tag.sh @@ -10,6 +10,6 @@ echo "${git_tag} ${current_version}" if [ $current_version == $git_tag ]; then echo "Version does match git tag" else - echo "Version does not match git tag, Poetry: ${current_version} vs Tag: ${git_tag} " + echo "Version does not match git tag! Pyproject.toml: ${current_version} vs Tag: ${git_tag} " exit 1 fi From 7711b723d70f4de577b0ceb7432a2af011f20f8e Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Fri, 4 Oct 2024 06:34:11 -0800 Subject: [PATCH 2/2] Update scripts/verify_tag.sh Co-authored-by: Matt Fisher --- scripts/verify_tag.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/verify_tag.sh b/scripts/verify_tag.sh index 248bf4c6..55cac822 100755 --- a/scripts/verify_tag.sh +++ b/scripts/verify_tag.sh @@ -10,6 +10,6 @@ echo "${git_tag} ${current_version}" if [ $current_version == $git_tag ]; then echo "Version does match git tag" else - echo "Version does not match git tag! Pyproject.toml: ${current_version} vs Tag: ${git_tag} " + echo "Version does not match git tag! pyproject.toml: ${current_version} vs Tag: ${git_tag} " exit 1 fi