We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 672ebb5 commit ca90febCopy full SHA for ca90feb
release.sh
@@ -48,6 +48,12 @@ if [ "$LAST" != "$TARGET_VERSION" ]; then
48
error "Version $TARGET_VERSION is lower than the latest tagged version ($LAST)."
49
fi
50
51
+if which twine >/dev/null; then
52
+ echo "Found twine"
53
+else
54
+ error "Twine was not found. Please install it and then re-run this script"
55
+fi
56
+
57
echo "This will tag and release psij-python to version $TARGET_VERSION."
58
echo -n "Type 'yes' if you want to continue: "
59
read REPLY
0 commit comments