summaryrefslogtreecommitdiff
path: root/gr-wavelet/python
Commit message (Collapse)AuthorAgeFilesLines
* cmake: change how test files are build when cross compilingPhilip Balister2021-12-031-0/+3
| | | | | | | | | | | | | | | | | | | | * When cross compiling gnuradio, change how the test files are built. Normally, the gnuradio QA code expects to run in the build tree. For the cross compilng case, we cannot run the QA code during the build process. The changes here allow the creation of an additional package that can be installed on a target that will run the QA code against the installed libraries. Major changes are not using full paths to test files (since they include paths that only exist on the build machine) and not setting environment variables in the shell files to force the QA code to use code in the build tree. This patch disables the C++ only tests, these need some work and then they can be added back for the cross compile case. Signed-off-by: Philip Balister <philip@balister.org>
* qa: run autopep8 formatting on qa python filesmormj2020-10-301-6/+9
| | | | | | find ./ -iname qa*.py | xargs autopep8 --in-place -a -a mostly formats whitespace and gets rid of trailing semicolons
* qa: remove xml file parameter causing deprecation warningsmormj2020-10-301-1/+1
|
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-032-2/+0
| | | | | | | | | | | | | | | | All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
* pybind: add hash check to binding file creation (#3472)mormj2020-06-044-4/+28
|
* wavelet: add pybind11 bindingsJosh Morman2020-06-0410-9/+260
|
* Update license header to SPDX formatdevnulling2020-01-273-39/+3
|
* Merge remote-tracking branch 'origin/next' into merge_nextMarcus Müller2018-08-313-12/+14
|\
| * python3: update non-GRC components to use python2 or python3Douglas Anderson2017-02-263-11/+14
| |
| * cmake: nuke cpack from existenceJohnathan Corgan2016-08-031-1/+0
| | | | | | | | | | | | CPack is not used, unmaintaned, and broken. This does not eliminate any MSVC build functionality.
* | Test: adds swig dirs to python tests to allow ctest to run on win buildsgnieboer2018-03-221-0/+6
|/
* Add a QA_PYTHON_EXECUTABLE variable so QA code knows what python to use when ↵Philip Balister2013-12-051-1/+1
| | | | | | | | | | | | cross compiling. With this (and the prior) patch, you can mount the compile directory on the target and run the QA code (as long as the paths are the same). The qtgui tests fail if there is no X server. Volk seems to fail for hard float builds. We'll need to look at adding thes changes to gr_modtool. Signed-off-by: Philip Balister <philip@balister.org>
* Removing gruel from QA python paths.Ben Reynwar2013-06-061-1/+0
|
* uninstalled imports: Fixing up after merge with master.Ben Reynwar2013-06-031-1/+1
|
* Merged next into uninstalled import branch.Ben Reynwar2013-04-021-12/+14
|\
| * blocks: converting references to vector source/sink, null source/sink, nop, ↵Tom Rondeau2013-03-171-13/+13
| | | | | | | | copy, head, skiphead, vector_map, and annotator blocks to use gr-blocks.
* | wavelet: Updating testing environment.Ben Reynwar2013-03-112-20/+14
| |
* | wavelet: Enabling uninstalled python imports.Ben Reynwar2013-03-083-2/+7
|/
* blocks: removing throttle, threshold, stretch from gnuradio-core.Tom Rondeau2013-02-242-1/+4
|
* Merge branch 'master' into nextJohnathan Corgan2012-11-141-9/+9
|\ | | | | | | | | | | | | | | | | Conflicts: gr-atsc/src/lib/CMakeLists.txt gr-digital/python/CMakeLists.txt gr-trellis/src/python/CMakeLists.txt gr-vocoder/python/CMakeLists.txt gr-wavelet/python/CMakeLists.txt
| * gr: same change for common PYTHON test pathsJosh Blum2012-11-141-7/+7
| | | | | | | | | | | | | | Conflicts: gr-analog/python/CMakeLists.txt gr-blocks/python/CMakeLists.txt
| * gr: set a common GR_TEST_TARGET_DEPS for all module unit testsJosh Blum2012-11-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Each unit test shares common dependencies, but we have been neglecting to set these. In this changeset, we set one top level GR_TEST_TARGET_DEPS, and simply append module-specific dependencies for each test. This also helps to fix QA tests on windows which were missing the dependencies list. Conflicts: gr-analog/python/CMakeLists.txt gr-blocks/python/CMakeLists.txt
* | fixing up various QA issues with new components.Tom Rondeau2012-11-101-1/+2
| |
* | analog: removing frequency mod, phase mod, quad demod, and rail from ↵Tom Rondeau2012-11-061-0/+2
| | | | | | | | gnuradio-core.
* | Merge branch 'master' into commentsBen Reynwar2012-08-081-2/+2
|\|
| * wavelet: fixes for missing qa libraries and compile definesJosh Blum2012-05-221-2/+2
| |
* | docs: Adding/editing top-level docstrings.Ben Reynwar2012-05-211-2/+1
|/
* Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵Tom Rondeau2012-04-133-15/+15
| | | | | | this in the future. The sed script was provided by Moritz Fischer.
* wavelet: move wavelet blocks to new top-level componentJohnathan Corgan2012-04-013-0/+256