Bump websockets constraint to 11.0.1+ (#90901)

This commit is contained in:
J. Nick Koston 2023-04-06 18:03:33 -10:00 committed by Paulus Schoutsen
parent be65d4f33e
commit 6522a3ad1b
3 changed files with 5 additions and 5 deletions

View File

@ -159,6 +159,6 @@ uamqp==1.6.0;python_version<'3.11'
faust-cchardet>=2.1.18
# websockets 11.0 is missing files in the source distribution
# which break wheel builds
# which break wheel builds so we need at least 11.0.1
# https://github.com/aaugustin/websockets/issues/1329
websockets<11.0
websockets>=11.0.1

View File

@ -164,9 +164,9 @@ uamqp==1.6.0;python_version<'3.11'
faust-cchardet>=2.1.18
# websockets 11.0 is missing files in the source distribution
# which break wheel builds
# which break wheel builds so we need at least 11.0.1
# https://github.com/aaugustin/websockets/issues/1329
websockets<11.0
websockets>=11.0.1
"""
IGNORE_PRE_COMMIT_HOOK_ID = (

View File

@ -3,7 +3,7 @@ PIP_CACHE=$1
# Number of existing dependency conflicts
# Update if a PR resolves one!
DEPENDENCY_CONFLICTS=3
DEPENDENCY_CONFLICTS=4
PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE)
LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)