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..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, 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