From: Otto Moerbeek Date: Mon, 8 Apr 2019 14:12:47 +0000 (+0200) Subject: OpenBSD only has protoc 3.x; tell python to install the proper runtime. X-Git-Tag: dnsdist-1.4.0-alpha1~15^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F7687%2Fhead;p=thirdparty%2Fpdns.git OpenBSD only has protoc 3.x; tell python to install the proper runtime. --- diff --git a/regression-tests.dnsdist/requirements.txt b/regression-tests.dnsdist/requirements.txt index 6ad4ff3d67..7fbe25b04b 100644 --- a/regression-tests.dnsdist/requirements.txt +++ b/regression-tests.dnsdist/requirements.txt @@ -2,7 +2,7 @@ dnspython>=1.11,<1.16.0 nose>=1.3.7 libnacl>=1.4.3 requests>=2.1.0 -protobuf>=2.5,<3.0; sys_platform != 'darwin' -protobuf>=3.0; sys_platform == 'darwin' +protobuf>=2.5,<3.0; sys_platform != 'darwin' and sys_platform != 'openbsd6' +protobuf>=3.0; sys_platform == 'darwin' or sys_platform == 'openbsd6' pysnmp>=4.3.4 future>=0.17.1