File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ is provided by code that been generated from a model of the service.
3434
3535## Install from pypi
3636```
37- pip install awsiot
37+ pip install awsiotsdk
3838```
3939
4040## Build from source
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ phases:
1919 - echo Build started on `date`
2020 - cd aws-iot-device-sdk-python-v2
2121 - CURRENT_TAG_VERSION=$(git describe --abbrev=0)
22- - python3 -m pip install --user awsiot ==$CURRENT_TAG_VERSION
22+ - python3 -m pip install --user awsiotsdk ==$CURRENT_TAG_VERSION
2323 - python3 samples/basic_discovery.py --region us-east-1 --cert /tmp/certificate.pem --key /tmp/privatekey.pem --ca_file /tmp/AmazonRootCA1.pem --thing_name aws-sdk-crt-unit-test --print_discover_resp_only -v Trace
2424
2525 post_build :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ phases:
2121 - CURRENT_TAG_VERSION=$(git describe --abbrev=0)
2222 # this is here because typing isn't in testpypi, so pull it from prod instead
2323 - python3 -m pip install typing
24- - python3 -m pip install -i https://testpypi.python.org/simple --user awsiot ==$CURRENT_TAG_VERSION
24+ - python3 -m pip install -i https://testpypi.python.org/simple --user awsiotsdk ==$CURRENT_TAG_VERSION
2525 - python3 samples/basic_discovery.py --region us-east-1 --cert /tmp/certificate.pem --key /tmp/privatekey.pem --ca_file /tmp/AmazonRootCA1.pem --thing_name aws-sdk-crt-unit-test --print_discover_resp_only -v Trace
2626
2727 post_build :
Original file line number Diff line number Diff line change 44git describe --abbrev=0
55# now get the tag
66CURRENT_TAG_VERSION=$( git describe --abbrev=0)
7- if pip install -vvv awsiot ==$CURRENT_TAG_VERSION ; then
7+ if pip install -vvv awsiotsdk ==$CURRENT_TAG_VERSION ; then
88 echo " $CURRENT_TAG_VERSION is already in pypi, cut a new tag if you want to upload another version."
99 exit 1
1010fi
Original file line number Diff line number Diff line change 1616from setuptools import setup , find_packages
1717
1818setup (
19- name = 'awsiot ' ,
20- version = '0.2.3 ' ,
19+ name = 'awsiotsdk ' ,
20+ version = '0.2.4 ' ,
2121 description = 'AWS IoT SDK based on the AWS Common Runtime' ,
2222 author = 'AWS SDK Common Runtime Team' ,
2323 url = 'https://github.com/awslabs/aws-iot-device-sdk-python-v2' ,
You can’t perform that action at this time.
0 commit comments