From be10b6d7f8bcbf41a309ac02bd82965637c46e4d Mon Sep 17 00:00:00 2001 From: Chenyang Liu Date: Thu, 19 Jan 2023 11:34:14 +0800 Subject: [PATCH 1/3] Update version --- src/webpubsub/HISTORY.rst | 5 +++++ src/webpubsub/setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/webpubsub/HISTORY.rst b/src/webpubsub/HISTORY.rst index 0e9c3af3f7a..9650e713eb5 100644 --- a/src/webpubsub/HISTORY.rst +++ b/src/webpubsub/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +1.2.0 ++++++ +* Update websocket dependency version +* Remove hard limit of sku + 1.1.0 ++++++ * Add `az webpubsub list-usage` diff --git a/src/webpubsub/setup.py b/src/webpubsub/setup.py index 0429389e714..35cbeb4c70c 100644 --- a/src/webpubsub/setup.py +++ b/src/webpubsub/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '1.1.0' +VERSION = '1.2.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From 1445d385de9942ef2987a0c2b3651df414518dfd Mon Sep 17 00:00:00 2001 From: Chenyang Liu Date: Thu, 19 Jan 2023 15:29:52 +0800 Subject: [PATCH 2/3] Update --- src/webpubsub/HISTORY.rst | 1 + src/webpubsub/azext_webpubsub/azext_metadata.json | 2 +- src/webpubsub/setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/webpubsub/HISTORY.rst b/src/webpubsub/HISTORY.rst index 9650e713eb5..964b47d5336 100644 --- a/src/webpubsub/HISTORY.rst +++ b/src/webpubsub/HISTORY.rst @@ -5,6 +5,7 @@ Release History 1.2.0 +++++ +* Drop python 3.6 support * Update websocket dependency version * Remove hard limit of sku diff --git a/src/webpubsub/azext_webpubsub/azext_metadata.json b/src/webpubsub/azext_webpubsub/azext_metadata.json index e5d473957e0..b729b1c8503 100644 --- a/src/webpubsub/azext_webpubsub/azext_metadata.json +++ b/src/webpubsub/azext_webpubsub/azext_metadata.json @@ -1,4 +1,4 @@ { "azext.isPreview": false, - "azext.minCliCoreVersion": "2.22.0" + "azext.minCliCoreVersion": "2.39.0" } \ No newline at end of file diff --git a/src/webpubsub/setup.py b/src/webpubsub/setup.py index 35cbeb4c70c..838e0ad44fa 100644 --- a/src/webpubsub/setup.py +++ b/src/webpubsub/setup.py @@ -34,7 +34,7 @@ # TODO: Add any additional SDK dependencies here DEPENDENCIES = [ - 'websockets>=8.1' + 'websockets~=10.4' ] with open('README.rst', 'r', encoding='utf-8') as f: From 5df64b0dbf4f78f655cc08c4407de10c191c72d0 Mon Sep 17 00:00:00 2001 From: Chenyang Liu Date: Thu, 19 Jan 2023 16:30:22 +0800 Subject: [PATCH 3/3] Remove 3.6 in CLASSIFIERS --- src/webpubsub/setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/webpubsub/setup.py b/src/webpubsub/setup.py index 838e0ad44fa..420b07586dc 100644 --- a/src/webpubsub/setup.py +++ b/src/webpubsub/setup.py @@ -26,7 +26,6 @@ 'Intended Audience :: System Administrators', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'License :: OSI Approved :: MIT License',