Skip to content

Commit a6cd9a6

Browse files
committed
[TASK] avoid possible python overflow
1 parent d844d6f commit a6cd9a6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = ['meson-python', 'cython', 'numpy']
66

77
[project]
88
name = "bact-archiver"
9-
version = "0.3.1"
9+
version = "0.3.2"
1010
description = "EPICS archiver appliance access using google protobuf"
1111
readme="README.rst"
1212
authors = [
@@ -26,7 +26,10 @@ requires-python = ">= 3.7"
2626
dependencies = [
2727
"numpy",
2828
"pandas",
29-
"protobuf >=3.18.3, ==3.*",
29+
# alert was solely for python protobuf interface
30+
# here only c++ compiled protobuf elements are used
31+
# but better be safe than ....
32+
"protobuf >=4.25.8",
3033
"python-dateutil"
3134
]
3235

0 commit comments

Comments
 (0)