Skip to content

Commit d3c66b8

Browse files
authored
[WebPubSub] Upgrade websocket version (#8944)
* Upgrade websocket version * minor update * update version according to comments
1 parent 907c968 commit d3c66b8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/webpubsub/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
1.7.1
7+
+++++
8+
* Upgrade `websockets` to `13.0.1` to sure the compatibility with Python 3.12
9+
610
1.7.0
711
+++++
812
* Add `az webpubsub update --client-cert-enable/--disable-local-auth/--region-endpoint-enabled` support

src/webpubsub/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# TODO: Confirm this is the right version number you want and it matches your
1818
# HISTORY.rst entry.
19-
VERSION = '1.7.0'
19+
VERSION = '1.7.1'
2020

2121
# The full list of classifiers is available at
2222
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
@@ -33,7 +33,7 @@
3333

3434
# TODO: Add any additional SDK dependencies here
3535
DEPENDENCIES = [
36-
'websockets~=10.4'
36+
'websockets~=13.0.1'
3737
]
3838

3939
with open('README.rst', 'r', encoding='utf-8') as f:

0 commit comments

Comments
 (0)