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 44a67bc commit f60b9aaCopy full SHA for f60b9aa
continuous-delivery/test_version_exists
@@ -13,13 +13,13 @@ if [ "$CURRENT_TAG" != "$CURRENT_TAG_VERSION" ]; then
13
exit 1
14
fi
15
16
-SETUP_PY_VERSION=$(python setup.py --version)
+SETUP_PY_VERSION=$(python3 setup.py --version)
17
if [ "$CURRENT_TAG_VERSION" != "$SETUP_PY_VERSION" ]; then
18
echo "Current tag version does not match version in setup.py: $CURRENT_TAG_VERSION != $SETUP_PY_VERSION"
19
20
21
22
-if pip install --no-cache-dir -vvv awsiotsdk==$CURRENT_TAG_VERSION; then
+if python3 -m pip install --no-cache-dir -vvv awsiotsdk==$CURRENT_TAG_VERSION; then
23
echo "$CURRENT_TAG_VERSION is already in pypi, cut a new tag if you want to upload another version."
24
25
0 commit comments