Bump black and click versions (#12320)

This commit is contained in:
David Robertson 2022-03-29 11:41:19 +01:00 committed by GitHub
parent 6f2943714b
commit a2b00a4486
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 37 additions and 30 deletions

1
changelog.d/12320.misc Normal file
View file

@ -0,0 +1 @@
Bump the version of `black` for compatibility with the latest `click` release.

View file

@ -193,12 +193,15 @@ class TrivialXmppClient:
time.sleep(7) time.sleep(7)
print("SSRC spammer started") print("SSRC spammer started")
while self.running: while self.running:
ssrcMsg = "<presence to='%(tojid)s' xmlns='jabber:client'><x xmlns='http://jabber.org/protocol/muc'/><c xmlns='http://jabber.org/protocol/caps' hash='sha-1' node='http://jitsi.org/jitsimeet' ver='0WkSdhFnAUxrz4ImQQLdB80GFlE='/><nick xmlns='http://jabber.org/protocol/nick'>%(nick)s</nick><stats xmlns='http://jitsi.org/jitmeet/stats'><stat name='bitrate_download' value='175'/><stat name='bitrate_upload' value='176'/><stat name='packetLoss_total' value='0'/><stat name='packetLoss_download' value='0'/><stat name='packetLoss_upload' value='0'/></stats><media xmlns='http://estos.de/ns/mjs'><source type='audio' ssrc='%(assrc)s' direction='sendre'/><source type='video' ssrc='%(vssrc)s' direction='sendre'/></media></presence>" % { ssrcMsg = (
"tojid": "%s@%s/%s" % (ROOMNAME, ROOMDOMAIN, self.shortJid), "<presence to='%(tojid)s' xmlns='jabber:client'><x xmlns='http://jabber.org/protocol/muc'/><c xmlns='http://jabber.org/protocol/caps' hash='sha-1' node='http://jitsi.org/jitsimeet' ver='0WkSdhFnAUxrz4ImQQLdB80GFlE='/><nick xmlns='http://jabber.org/protocol/nick'>%(nick)s</nick><stats xmlns='http://jitsi.org/jitmeet/stats'><stat name='bitrate_download' value='175'/><stat name='bitrate_upload' value='176'/><stat name='packetLoss_total' value='0'/><stat name='packetLoss_download' value='0'/><stat name='packetLoss_upload' value='0'/></stats><media xmlns='http://estos.de/ns/mjs'><source type='audio' ssrc='%(assrc)s' direction='sendre'/><source type='video' ssrc='%(vssrc)s' direction='sendre'/></media></presence>"
"nick": self.userId, % {
"assrc": self.ssrcs["audio"], "tojid": "%s@%s/%s" % (ROOMNAME, ROOMDOMAIN, self.shortJid),
"vssrc": self.ssrcs["video"], "nick": self.userId,
} "assrc": self.ssrcs["audio"],
"vssrc": self.ssrcs["video"],
}
)
res = self.sendIq(ssrcMsg) res = self.sendIq(ssrcMsg)
print("reply from ssrc announce: ", res) print("reply from ssrc announce: ", res)
time.sleep(10) time.sleep(10)

View file

@ -95,7 +95,7 @@ CONDITIONAL_REQUIREMENTS["all"] = list(ALL_OPTIONAL_REQUIREMENTS)
# We pin black so that our tests don't start failing on new releases. # We pin black so that our tests don't start failing on new releases.
CONDITIONAL_REQUIREMENTS["lint"] = [ CONDITIONAL_REQUIREMENTS["lint"] = [
"isort==5.7.0", "isort==5.7.0",
"black==21.12b0", "black==22.3.0",
"flake8-comprehensions", "flake8-comprehensions",
"flake8-bugbear==21.3.2", "flake8-bugbear==21.3.2",
"flake8", "flake8",
@ -128,7 +128,7 @@ CONDITIONAL_REQUIREMENTS["dev"] = (
+ CONDITIONAL_REQUIREMENTS["test"] + CONDITIONAL_REQUIREMENTS["test"]
+ [ + [
# The following are used by the release script # The following are used by the release script
"click==7.1.2", "click==8.1.0",
"redbaron==0.9.2", "redbaron==0.9.2",
"GitPython==3.1.14", "GitPython==3.1.14",
"commonmark==0.9.1", "commonmark==0.9.1",

View file

@ -23,7 +23,7 @@ from typing_extensions import Final
MAX_PDU_SIZE = 65536 MAX_PDU_SIZE = 65536
# the "depth" field on events is limited to 2**63 - 1 # the "depth" field on events is limited to 2**63 - 1
MAX_DEPTH = 2 ** 63 - 1 MAX_DEPTH = 2**63 - 1
# the maximum length for a room alias is 255 characters # the maximum length for a room alias is 255 characters
MAX_ALIAS_LENGTH = 255 MAX_ALIAS_LENGTH = 255

View file

@ -428,7 +428,7 @@ class _Recoverer:
"as-recoverer-%s" % (self.service.id,), self.retry "as-recoverer-%s" % (self.service.id,), self.retry
) )
delay = 2 ** self.backoff_counter delay = 2**self.backoff_counter
logger.info("Scheduling retries on %s in %fs", self.service.id, delay) logger.info("Scheduling retries on %s in %fs", self.service.id, delay)
self.clock.call_later(delay, _retry) self.clock.call_later(delay, _retry)

View file

@ -182,7 +182,7 @@ class Keyring:
vk = get_verify_key(hs.signing_key) vk = get_verify_key(hs.signing_key)
self._local_verify_keys[f"{vk.alg}:{vk.version}"] = FetchKeyResult( self._local_verify_keys[f"{vk.alg}:{vk.version}"] = FetchKeyResult(
verify_key=vk, verify_key=vk,
valid_until_ts=2 ** 63, # fake future timestamp valid_until_ts=2**63, # fake future timestamp
) )
async def verify_json_for_server( async def verify_json_for_server(

View file

@ -49,7 +49,7 @@ if TYPE_CHECKING:
# the literal fields "foo\" and "bar" but will instead be treated as "foo\\.bar" # the literal fields "foo\" and "bar" but will instead be treated as "foo\\.bar"
SPLIT_FIELD_REGEX = re.compile(r"(?<!\\)\.") SPLIT_FIELD_REGEX = re.compile(r"(?<!\\)\.")
CANONICALJSON_MAX_INT = (2 ** 53) - 1 CANONICALJSON_MAX_INT = (2**53) - 1
CANONICALJSON_MIN_INT = -CANONICALJSON_MAX_INT CANONICALJSON_MIN_INT = -CANONICALJSON_MAX_INT

View file

@ -41,7 +41,7 @@ from synapse.types import ISynapseReactor
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
_VALID_URI = re.compile(br"\A[\x21-\x7e]+\Z") _VALID_URI = re.compile(rb"\A[\x21-\x7e]+\Z")
@implementer(IAgent) @implementer(IAgent)

View file

@ -275,7 +275,7 @@ class ReplicationEndpoint(metaclass=abc.ABCMeta):
if attempts > cls.RETRY_ON_CONNECT_ERROR_ATTEMPTS: if attempts > cls.RETRY_ON_CONNECT_ERROR_ATTEMPTS:
raise raise
delay = 2 ** attempts delay = 2**attempts
logger.warning( logger.warning(
"%s request connection failed; retrying in %ds: %r", "%s request connection failed; retrying in %ds: %r",
cls.NAME, cls.NAME,

View file

@ -352,7 +352,7 @@ class ReadableFileWrapper:
`IConsumer`. `IConsumer`.
""" """
CHUNK_SIZE = 2 ** 14 CHUNK_SIZE = 2**14
clock: Clock clock: Clock
path: str path: str

View file

@ -23,10 +23,10 @@ if TYPE_CHECKING:
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
_charset_match = re.compile( _charset_match = re.compile(
br'<\s*meta[^>]*charset\s*=\s*"?([a-z0-9_-]+)"?', flags=re.I rb'<\s*meta[^>]*charset\s*=\s*"?([a-z0-9_-]+)"?', flags=re.I
) )
_xml_encoding_match = re.compile( _xml_encoding_match = re.compile(
br'\s*<\s*\?\s*xml[^>]*encoding="([a-z0-9_-]+)"', flags=re.I rb'\s*<\s*\?\s*xml[^>]*encoding="([a-z0-9_-]+)"', flags=re.I
) )
_content_type_match = re.compile(r'.*; *charset="?(.*?)"?(;|$)', flags=re.I) _content_type_match = re.compile(r'.*; *charset="?(.*?)"?(;|$)', flags=re.I)

View file

@ -63,7 +63,7 @@ if TYPE_CHECKING:
from synapse.server import HomeServer from synapse.server import HomeServer
# python 3 does not have a maximum int value # python 3 does not have a maximum int value
MAX_TXN_ID = 2 ** 63 - 1 MAX_TXN_ID = 2**63 - 1
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

View file

@ -217,13 +217,16 @@ def _check_yield_points(
# We don't raise here as its perfectly valid for contexts to # We don't raise here as its perfectly valid for contexts to
# change in a function, as long as it sets the correct context # change in a function, as long as it sets the correct context
# on resolving (which is checked separately). # on resolving (which is checked separately).
err = "%s changed context from %s to %s, happened between lines %d and %d in %s" % ( err = (
frame.f_code.co_name, "%s changed context from %s to %s, happened between lines %d and %d in %s"
expected_context, % (
current_context(), frame.f_code.co_name,
last_yield_line_no, expected_context,
frame.f_lineno, current_context(),
frame.f_code.co_filename, last_yield_line_no,
frame.f_lineno,
frame.f_code.co_filename,
)
) )
changes.append(err) changes.append(err)

View file

@ -30,7 +30,7 @@ MIN_RETRY_INTERVAL = 10 * 60 * 1000
RETRY_MULTIPLIER = 5 RETRY_MULTIPLIER = 5
# a cap on the backoff. (Essentially none) # a cap on the backoff. (Essentially none)
MAX_RETRY_INTERVAL = 2 ** 62 MAX_RETRY_INTERVAL = 2**62
class NotRetryingDestination(Exception): class NotRetryingDestination(Exception):

View file

@ -496,8 +496,8 @@ class EventFromPduTestCase(TestCase):
def test_invalid_numbers(self) -> None: def test_invalid_numbers(self) -> None:
"""Invalid values for an integer should be rejected, all floats should be rejected.""" """Invalid values for an integer should be rejected, all floats should be rejected."""
for value in [ for value in [
-(2 ** 53), -(2**53),
2 ** 53, 2**53,
1.0, 1.0,
float("inf"), float("inf"),
float("-inf"), float("-inf"),
@ -524,7 +524,7 @@ class EventFromPduTestCase(TestCase):
event_from_pdu_json( event_from_pdu_json(
{ {
"type": EventTypes.Message, "type": EventTypes.Message,
"content": {"foo": [{"bar": 2 ** 56}]}, "content": {"foo": [{"bar": 2**56}]},
"room_id": "!room:test", "room_id": "!room:test",
"sender": "@user:test", "sender": "@user:test",
"depth": 1, "depth": 1,

View file

@ -206,7 +206,7 @@ class BaseStreamTestCase(unittest.HomeserverTestCase):
path: bytes = request.path # type: ignore path: bytes = request.path # type: ignore
self.assertRegex( self.assertRegex(
path, path,
br"^/_synapse/replication/get_repl_stream_updates/%s/[^/]+$" rb"^/_synapse/replication/get_repl_stream_updates/%s/[^/]+$"
% (stream_name.encode("ascii"),), % (stream_name.encode("ascii"),),
) )