Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions protos/stream_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions protos/stream_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from protos import stream_pb2 as protos_dot_stream__pb2

GRPC_GENERATED_VERSION = '1.71.2'
GRPC_GENERATED_VERSION = '1.82.1'
GRPC_VERSION = grpc.__version__
_version_not_supported = False

Expand All @@ -18,14 +18,14 @@
if _version_not_supported:
raise RuntimeError(
f'The grpc package installed is at version {GRPC_VERSION},'
+ f' but the generated code in protos/stream_pb2_grpc.py depends on'
+ ' but the generated code in protos/stream_pb2_grpc.py depends on'
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
)


class StreamStub(object):
class StreamStub:
"""Missing associated documentation comment in .proto file."""

def __init__(self, channel):
Expand All @@ -46,7 +46,7 @@ def __init__(self, channel):
_registered_method=True)


class StreamServicer(object):
class StreamServicer:
"""Missing associated documentation comment in .proto file."""

def GetStream(self, request, context):
Expand Down Expand Up @@ -82,7 +82,7 @@ def add_StreamServicer_to_server(servicer, server):


# This class is part of an EXPERIMENTAL API.
class Stream(object):
class Stream:
"""Missing associated documentation comment in .proto file."""

@staticmethod
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dev-dependencies = [
"pytest",
"bandit",
"black<25.0,>=24.3",
"grpcio-tools>=1.71.2",
"grpcio-tools>=1.82.1",
]

[project]
Expand All @@ -12,7 +12,7 @@ requires-python = "<4.0,>=3.10"
dependencies = [
"curl-cffi>=0.15.0",
"grpcio>=1.82.1,<2.0.0",
"protobuf<6.0.0,>=5.29.0",
"protobuf>=7.35.1,<8.0.0",
"streamlink>=8.4.0",
"wheel>=0.47.0,<1.0.0",
"yt-dlp>=2026.7.4",
Expand Down
6 changes: 3 additions & 3 deletions stream_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions stream_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import stream_pb2 as stream__pb2

GRPC_GENERATED_VERSION = '1.71.2'
GRPC_GENERATED_VERSION = '1.82.1'
GRPC_VERSION = grpc.__version__
_version_not_supported = False

Expand All @@ -18,14 +18,14 @@
if _version_not_supported:
raise RuntimeError(
f'The grpc package installed is at version {GRPC_VERSION},'
+ f' but the generated code in stream_pb2_grpc.py depends on'
+ ' but the generated code in stream_pb2_grpc.py depends on'
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
)


class StreamStub(object):
class StreamStub:
"""Missing associated documentation comment in .proto file."""

def __init__(self, channel):
Expand All @@ -46,7 +46,7 @@ def __init__(self, channel):
_registered_method=True)


class StreamServicer(object):
class StreamServicer:
"""Missing associated documentation comment in .proto file."""

def GetStream(self, request, context):
Expand Down Expand Up @@ -82,7 +82,7 @@ def add_StreamServicer_to_server(servicer, server):


# This class is part of an EXPERIMENTAL API.
class Stream(object):
class Stream:
"""Missing associated documentation comment in .proto file."""

@staticmethod
Expand Down
Loading
Loading