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.
34
34
35
35
## Install from pypi
36
36
```
37
- pip install awsiot
37
+ pip install awsiotsdk
38
38
```
39
39
40
40
## Build from source
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ phases:
19
19
- echo Build started on `date`
20
20
- cd aws-iot-device-sdk-python-v2
21
21
- 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
23
23
- 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
24
24
25
25
post_build :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ phases:
21
21
- CURRENT_TAG_VERSION=$(git describe --abbrev=0)
22
22
# this is here because typing isn't in testpypi, so pull it from prod instead
23
23
- 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
25
25
- 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
26
26
27
27
post_build :
Original file line number Diff line number Diff line change 4
4
git describe --abbrev=0
5
5
# now get the tag
6
6
CURRENT_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
8
8
echo " $CURRENT_TAG_VERSION is already in pypi, cut a new tag if you want to upload another version."
9
9
exit 1
10
10
fi
Original file line number Diff line number Diff line change 16
16
from setuptools import setup , find_packages
17
17
18
18
setup (
19
- name = 'awsiot ' ,
20
- version = '0.2.3 ' ,
19
+ name = 'awsiotsdk ' ,
20
+ version = '0.2.4 ' ,
21
21
description = 'AWS IoT SDK based on the AWS Common Runtime' ,
22
22
author = 'AWS SDK Common Runtime Team' ,
23
23
url = 'https://github.com/awslabs/aws-iot-device-sdk-python-v2' ,
You can’t perform that action at this time.
0 commit comments