Skip to content

Commit e55e065

Browse files
authored
update awscrt to 0.9.10 (#127)
0.9.3 was missing wheels for several platforms
1 parent d096d27 commit e55e065

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

continuous-delivery/wait-for-pypi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
def wait(package, version, index_url=DEFAULT_INDEX_URL, timeout=DEFAULT_TIMEOUT, interval=DEFAULT_INTERVAL):
1212
give_up_time = time.time() + timeout
1313
while True:
14-
output = subprocess.check_output([sys.executable, '-m', 'pip', 'search', '--index', index_url, package])
14+
output = subprocess.check_output([sys.executable, '-m', 'pip', 'search',
15+
'--no-cache-dir', '--index', index_url, package])
1516
output = output.decode()
1617

1718
# output looks like: 'awscrt (0.3.1) - A common runtime for AWS Python projects\n...'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
url='https://github.com/aws/aws-iot-device-sdk-python-v2',
1414
packages=['awsiot'],
1515
install_requires=[
16-
'awscrt==0.9.3',
16+
'awscrt==0.9.10',
1717
],
1818
python_requires='>=3.5',
1919
)

0 commit comments

Comments
 (0)