Skip to content

Commit 3f796a7

Browse files
Renamed package because it was already taken in pypi. namespace stays the same, since it's not uncommon to leave off 'sdk' from a namespace. (#21)
1 parent 3988f55 commit 3f796a7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

continuous-delivery/test_prod_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:

continuous-delivery/test_test_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:

continuous-delivery/test_version_exists

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
git describe --abbrev=0
55
#now get the tag
66
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
88
echo "$CURRENT_TAG_VERSION is already in pypi, cut a new tag if you want to upload another version."
99
exit 1
1010
fi

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
from setuptools import setup, find_packages
1717

1818
setup(
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',

0 commit comments

Comments
 (0)