From 692ddc71b17196487dcad982836e074cab9a0f25 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 4 Feb 2019 16:00:16 +0100 Subject: python: Replace Boost.Python with PyBind11 This does not change the Python API itself, but it is still a significant change. Most importantly, it removes the dependency on Boost.Python. --- host/python/types.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'host/python/types.py') diff --git a/host/python/types.py b/host/python/types.py index 6b4ceefce..ad96076f3 100644 --- a/host/python/types.py +++ b/host/python/types.py @@ -18,8 +18,9 @@ SPIEdge = lib.types.spi_edge SPIConfig = lib.types.spi_config RXMetadataErrorCode = lib.types.rx_metadata_error_code Range = lib.types.range -RangeVector = lib.types.range_vector -MetaRange = lib.types.meta_range +MetaRange = lib.types.meta_range_t +GainRange = lib.types.meta_range_t +FreqRange = lib.types.meta_range_t RXMetadata = lib.types.rx_metadata TXMetadata = lib.types.tx_metadata TXAsyncMetadata = lib.types.async_metadata -- cgit v1.2.3