pycriu: add missing protobuf dependency

pycriu depends on protobuf to function correctly. Currently,
it raises an error if protobuf is not installed. Adding
protobuf to the dependencies ensures it is available after
installing pycriu.

Signed-off-by: Andrii Herheliuk <andrii@herheliuk.com>
This commit is contained in:
Andrii Herheliuk 2025-10-17 06:05:14 +01:00 committed by Andrei Vagin
parent a5ae3c184b
commit 540c631dd0
2 changed files with 3 additions and 0 deletions

View file

@ -11,6 +11,7 @@ authors = [
license = {text = "LGPLv2.1"}
dynamic = ["version"]
requires-python = ">=3.6"
dependencies = ["protobuf"]
[tool.setuptools]
packages = ["pycriu", "pycriu.images"]

View file

@ -14,3 +14,5 @@ version = attr: pycriu.__version__
[options]
packages = find:
python_requires = >=3.6
install_requires =
protobuf