From f830c7efa6096fad3cb1cd04b32ced9b8332d74d Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Thu, 27 Aug 2020 00:08:50 +0200 Subject: [PATCH] update csdr dependency to 0.17.0 --- debian/control | 2 +- docker/scripts/install-dependencies.sh | 2 +- owrx/feature.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index 0da32b2..f9c0cfb 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ Vcs-Git: https://github.com/jketterl/openwebrx.git Package: openwebrx Architecture: all -Depends: adduser, python3 (>= 3.5), python3-pkg-resources, csdr (> 0.16.0), netcat, owrx-connector (>= 0.3), python3-js8py (>= 0.1), ${python3:Depends}, ${misc:Depends} +Depends: adduser, python3 (>= 3.5), python3-pkg-resources, csdr (>= 0.17.0), netcat, owrx-connector (>= 0.3), python3-js8py (>= 0.1), ${python3:Depends}, ${misc:Depends} Recommends: digiham (>= 0.3), dsd (>= 1.7), sox, direwolf (>= 1.4), wsjtx, soapysdr-tools Description: multi-user web sdr Open source, multi-user SDR receiver with a web interface \ No newline at end of file diff --git a/docker/scripts/install-dependencies.sh b/docker/scripts/install-dependencies.sh index 42e3c50..e0a9073 100755 --- a/docker/scripts/install-dependencies.sh +++ b/docker/scripts/install-dependencies.sh @@ -55,7 +55,7 @@ cmakebuild itpp bb5c7e95f40e8fdb5c3f3d01a84bcbaf76f3676d git clone https://github.com/jketterl/csdr.git cd csdr # develop as of 2020-08-26, includes agc rework -git checkout c73d1dd291de199299745040fa5176309e038748 +git checkout a308c6b369d3eb47242e644c0c41dd27c6a4ec47 autoreconf -i ./configure make diff --git a/owrx/feature.py b/owrx/feature.py index fe90b49..9aab03f 100644 --- a/owrx/feature.py +++ b/owrx/feature.py @@ -115,7 +115,7 @@ class FeatureDetector(object): OpenWebRX uses the demodulator and pipeline tools provided by the csdr project. Please check out [the project page on github](https://github.com/jketterl/csdr) for further details and installation instructions. """ - required_version = LooseVersion("0.16.1") + required_version = LooseVersion("0.17.0") csdr_version_regex = re.compile("^csdr version (.*)$")