update csdr dependency to 0.17.0

This commit is contained in:
Jakob Ketterl 2020-08-27 00:08:50 +02:00
parent 04d6515337
commit f830c7efa6
3 changed files with 3 additions and 3 deletions

2
debian/control vendored
View File

@ -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

View File

@ -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

View File

@ -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 (.*)$")