diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-11-09 23:46:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-09 23:46:47 +0000 |
commit | 240a7d43c8a67ffb86d44dc276805aa43c358dcc (patch) | |
tree | e9f91003921ce3d60aaed613bb375d51f518112e | |
parent | f13df591d4d7ca8e2f31b35c9c91e69ba9e9b013 (diff) |
[build] Pin `websockets` version to >=13.0,<14 (#11488)
websockets 14.0 causes CI test failures (a lot more of them)
Authored by: bashonly
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 55bd55bb9..75ad3e15d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,7 +52,7 @@ default = [ "pycryptodomex", "requests>=2.32.2,<3", "urllib3>=1.26.17,<3", - "websockets>=13.0", + "websockets>=13.0,<14", ] curl-cffi = [ "curl-cffi==0.5.10; os_name=='nt' and implementation_name=='cpython'", |