From 8dfd585e1ac16d5ac0d0d55082019df4f252c577 Mon Sep 17 00:00:00 2001 From: Ben Niemann Date: Mon, 20 Dec 2021 03:59:43 +0100 Subject: [PATCH] Remove unused dependency on protobuf. --- etc/requirements.txt | 2 -- wscript | 4 ---- 2 files changed, 6 deletions(-) diff --git a/etc/requirements.txt b/etc/requirements.txt index be4640e7..8ba8fa4a 100644 --- a/etc/requirements.txt +++ b/etc/requirements.txt @@ -2,8 +2,6 @@ cython==0.29.24 flatbuffers==2.0 pyside2==5.15.2 qasync==0.22.0 -protobuf==3.18.0 -mypy-protobuf==3.0.0 eventfd==0.2 psutil==5.8.0 ruamel.yaml==0.17.16 diff --git a/wscript b/wscript index 26520a60..dd941f22 100644 --- a/wscript +++ b/wscript @@ -101,7 +101,6 @@ def configure(ctx): ctx.load('build_utils.waf.qml', tooldir='.') ctx.load('build_utils.waf.python', tooldir='.') ctx.load('build_utils.waf.cython', tooldir='.') - ctx.load('build_utils.waf.proto', tooldir='.') ctx.load('build_utils.waf.flatbuffers', tooldir='.') ctx.env.DATADIR = os.path.join(ctx.env.PREFIX, 'share', 'noisicaa') @@ -114,7 +113,6 @@ def configure(ctx): ctx.check_cfg(atleast_pkgconfig_version='0.29') ctx.pkg_config('JACK', 'jack', '1.9') - ctx.pkg_config('PROTOBUF', 'protobuf', '3.6') ctx.pkg_config('FLATBUFFERS', 'flatbuffers', '2.0.0') ctx.pkg_config('SWRESAMPLE', 'libswresample', '1.2') ctx.pkg_config('AVUTIL', 'libavutil', '54') @@ -124,8 +122,6 @@ def configure(ctx): ctx.check(header_name='dep_sort_stl.h', features='cxx cxxprogram') ctx.check_python_module('flatbuffers', condition="ver >= num(2, 0)") - ctx.check_python_module('google.protobuf', condition="ver >= num(3, 18)") - ctx.check_python_module('mypy_protobuf.main', condition="ver >= num(3, 0)") ctx.check_python_module('eventfd') # has no __version__ ctx.find_program('faust')