diff --git a/src/webpubsub/HISTORY.rst b/src/webpubsub/HISTORY.rst index 17980870234..29e9745327b 100644 --- a/src/webpubsub/HISTORY.rst +++ b/src/webpubsub/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.7.1 ++++++ +* Upgrade `websockets` to `13.0.1` to sure the compatibility with Python 3.12 + 1.7.0 +++++ * Add `az webpubsub update --client-cert-enable/--disable-local-auth/--region-endpoint-enabled` support diff --git a/src/webpubsub/setup.py b/src/webpubsub/setup.py index d7439604cff..1dc1227bf84 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.7.0' +VERSION = '1.7.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -33,7 +33,7 @@ # TODO: Add any additional SDK dependencies here DEPENDENCIES = [ - 'websockets~=10.4' + 'websockets~=13.0.1' ] with open('README.rst', 'r', encoding='utf-8') as f: