Skip to content

Commit

Permalink
update awscrt to 0.9.10 (#127)
Browse files Browse the repository at this point in the history
0.9.3 was missing wheels for several platforms
  • Loading branch information
graebm authored Oct 27, 2020
1 parent d096d27 commit e55e065
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion continuous-delivery/wait-for-pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
def wait(package, version, index_url=DEFAULT_INDEX_URL, timeout=DEFAULT_TIMEOUT, interval=DEFAULT_INTERVAL):
give_up_time = time.time() + timeout
while True:
output = subprocess.check_output([sys.executable, '-m', 'pip', 'search', '--index', index_url, package])
output = subprocess.check_output([sys.executable, '-m', 'pip', 'search',
'--no-cache-dir', '--index', index_url, package])
output = output.decode()

# output looks like: 'awscrt (0.3.1) - A common runtime for AWS Python projects\n...'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
url='https://github.com/aws/aws-iot-device-sdk-python-v2',
packages=['awsiot'],
install_requires=[
'awscrt==0.9.3',
'awscrt==0.9.10',
],
python_requires='>=3.5',
)

0 comments on commit e55e065

Please sign in to comment.