-
Notifications
You must be signed in to change notification settings - Fork 1.5k
{IoT} Adds IoT extension v0.28.0 #9547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33212,6 +33212,89 @@ | |
| "version": "0.30.0b1" | ||
| }, | ||
| "sha256Digest": "c05c57c9e81fa7f2dd0fe49f74bd1792fd1783d582007bbd1328588b9e738ccb" | ||
| }, | ||
| { | ||
| "downloadUrl": "https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.28.0/azure_iot-0.28.0-py3-none-any.whl", | ||
| "filename": "azure_iot-0.28.0-py3-none-any.whl", | ||
| "metadata": { | ||
| "azext.isPreview": false, | ||
| "azext.minCliCoreVersion": "2.67.0", | ||
| "classifiers": [ | ||
| "Development Status :: 4 - Beta", | ||
| "Intended Audience :: Developers", | ||
| "Intended Audience :: System Administrators", | ||
| "Programming Language :: Python", | ||
| "Programming Language :: Python :: 3 :: Only", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Programming Language :: Python :: 3.13", | ||
| "License :: OSI Approved :: MIT License" | ||
| ], | ||
| "extensions": { | ||
| "python.details": { | ||
| "contacts": [ | ||
| { | ||
| "email": "[email protected]", | ||
| "name": "Microsoft", | ||
| "role": "author" | ||
| } | ||
| ], | ||
| "document_names": { | ||
| "description": "DESCRIPTION.rst" | ||
| }, | ||
| "project_urls": { | ||
| "Home": "https://github.com/azure/azure-iot-cli-extension" | ||
| } | ||
| } | ||
| }, | ||
| "extras": [], | ||
| "generator": "bdist_wheel (0.30.0)", | ||
| "license": "MIT", | ||
| "license_file": "LICENSE", | ||
| "metadata_version": "2.0", | ||
| "name": "azure-iot", | ||
| "requires_python": ">=3.9", | ||
| "run_requires": [ | ||
| { | ||
| "requires": [ | ||
| "azure-core (<2.0.0,>=1.24.0)", | ||
| "azure-core<2.0.0,>=1.24.0", | ||
| "azure-eventhub (~=5.15.0)", | ||
| "azure-eventhub~=5.15.0", | ||
| "azure-identity (<1.18.0,>=1.6.1)", | ||
| "azure-identity<1.18.0,>=1.6.1", | ||
| "azure-iot-device (~=2.11)", | ||
| "azure-iot-device~=2.11", | ||
| "azure-mgmt-core (<2.0.0,>=1.3.0)", | ||
| "azure-mgmt-core<2.0.0,>=1.3.0", | ||
| "azure-storage-blob (<13.0.0,>=12.14.0)", | ||
| "azure-storage-blob<13.0.0,>=12.14.0", | ||
| "jsonschema (~=3.2.0)", | ||
| "jsonschema~=3.2.0", | ||
| "msrest (>=0.6.21)", | ||
| "msrest>=0.6.21", | ||
| "msrestazure (<2.0.0,>=0.6.3)", | ||
| "msrestazure<2.0.0,>=0.6.3", | ||
| "packaging (>=23.2)", | ||
| "packaging>=23.2", | ||
| "tomli (~=2.0)", | ||
| "tomli-w (~=1.0)", | ||
| "tomli-w~=1.0", | ||
| "tomli~=2.0", | ||
| "tqdm (~=4.62)", | ||
| "tqdm~=4.62", | ||
| "treelib (~=1.6)", | ||
| "treelib~=1.6" | ||
| ] | ||
| } | ||
| ], | ||
|
Comment on lines
+33253
to
+33293
|
||
| "summary": "The Azure IoT extension for Azure CLI.", | ||
| "version": "0.28.0" | ||
| }, | ||
| "sha256Digest": "36c29d5ce8e43a1a41ea91e33718aa591077a09b85487c2bb824b0e6e54e29e5" | ||
| } | ||
|
Comment on lines
+33216
to
33298
|
||
| ], | ||
| "azure-iot-ops": [ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The run_requires array is missing additional entries for the uamqp extra. Comparing with other versions (v0.26.0 at lines 33007-33018, v0.27.0 at lines 33101-33112, and v0.30.0b1 at lines 33198-33209), the run_requires should include three objects: the base requires, an entry with "extra": "uamqp", and an entry with "environment": "extra == "uamqp"". This version only has one object with the base requires, which is incomplete.