fix: remove upper bound on protobuf

This commit is contained in:
David Huggins-Daines 2026-04-14 11:15:31 -04:00
parent 2c24965201
commit cd50aac85d
3 changed files with 3 additions and 3 deletions

2
poetry.lock generated
View File

@ -1377,4 +1377,4 @@ files = [
[metadata]
lock-version = "2.1"
python-versions = ">=3.10"
content-hash = "4c0c626bea942116668a28c13e767eba7ee8c671e783d21d085da68701748450"
content-hash = "a9198afe0ca372daf16b42f0fb263cb772a6ee7c41a31f96349e63cecdc7a4e1"

View File

@ -11,7 +11,7 @@ dependencies = [
'numpy (>=1.25.0,<2.0.0)',
'sentencepiece (>=0.1.98,<0.3.0)',
'transformers (==5.5.1)',
'protobuf (>=4.21.0,<5.0.0)',
'protobuf (>=4.21.0)',
'torch (>=2.2.0,<3.0.0)',
'gguf @ ./gguf-py',
]

View File

@ -345,7 +345,7 @@ dependencies = [
requires-dist = [
{ name = "gguf", directory = "/home/dhd/work/llama.cpp/gguf-py" },
{ name = "numpy", specifier = ">=1.25.0,<2.0.0" },
{ name = "protobuf", specifier = ">=4.21.0,<5.0.0" },
{ name = "protobuf", specifier = ">=4.21.0" },
{ name = "sentencepiece", specifier = ">=0.1.98,<0.3.0" },
{ name = "torch", specifier = ">=2.2.0,<3.0.0", index = "https://download.pytorch.org/whl/cpu" },
{ name = "transformers", specifier = "==5.5.1" },