Skip to content

Update awscrt to 0.5.11 #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion continuous-delivery/test_version_exists
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ if [ "$CURRENT_TAG" != "$CURRENT_TAG_VERSION" ]; then
exit 1
fi

if pip install -vvv awsiotsdk==$CURRENT_TAG_VERSION; then
SETUP_PY_VERSION=$(python setup.py --version)
if [ "$CURRENT_TAG_VERSION" != "$SETUP_PY_VERSION" ]; then
echo "Current tag version does not match version in setup.py: $CURRENT_TAG_VERSION != $SETUP_PY_VERSION"
exit 1
fi

if pip install --no-cache-dir -vvv awsiotsdk==$CURRENT_TAG_VERSION; then
echo "$CURRENT_TAG_VERSION is already in pypi, cut a new tag if you want to upload another version."
exit 1
fi
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@

setup(
name='awsiotsdk',
version='1.0.3',
version='1.0.4',
description='AWS IoT SDK based on the AWS Common Runtime',
author='AWS SDK Common Runtime Team',
url='https://github.com/aws/aws-iot-device-sdk-python-v2',
packages = ['awsiot'],
install_requires=[
'awscrt==0.5.6',
'awscrt==0.5.11',
'futures;python_version<"3.2"',
'typing;python_version<"3.5"',
],
Expand Down