Python wrapper update

Increased minimum python version to 3.7
Updated readme.
pull/95/head
Christophe Favergeon 3 years ago
parent 3b415fe48e
commit e8d1f3a10c

@ -64,38 +64,38 @@ source [label=<
source:i -> filter:i [label="MyComplex(11)"
source:i -> filter:i [label="complex(11)"
,headlabel=<<TABLE BORDER="0" CELLPADDING="2"><TR><TD><FONT COLOR="blue" POINT-SIZE="12.0" >7</FONT>
</TD></TR></TABLE>>
,taillabel=<<TABLE BORDER="0" CELLPADDING="2"><TR><TD><FONT COLOR="blue" POINT-SIZE="12.0" >5</FONT>
</TD></TR></TABLE>>]
filter:ob -> sd:i [label="MyComplex(5)"
filter:ob -> sd:i [label="complex(5)"
,headlabel=<<TABLE BORDER="0" CELLPADDING="2"><TR><TD><FONT COLOR="blue" POINT-SIZE="12.0" >5</FONT>
</TD></TR></TABLE>>
,taillabel=<<TABLE BORDER="0" CELLPADDING="2"><TR><TD><FONT COLOR="blue" POINT-SIZE="12.0" >5</FONT>
</TD></TR></TABLE>>]
filter:oa ->
dup0 [label="MyComplex(5)"
dup0 [label="complex(5)"
,taillabel=<<TABLE BORDER="0" CELLPADDING="2"><TR><TD><FONT COLOR="blue" POINT-SIZE="12.0" >5</FONT>
</TD></TR></TABLE>>]
dup0 -> sa:i [label="MyComplex(5)"
dup0 -> sa:i [label="complex(5)"
,headlabel=<<TABLE BORDER="0" CELLPADDING="2"><TR><TD><FONT COLOR="blue" POINT-SIZE="12.0" >5</FONT>
</TD></TR></TABLE>>
]
dup0 -> sb:i [label="MyComplex(5)"
dup0 -> sb:i [label="complex(5)"
,headlabel=<<TABLE BORDER="0" CELLPADDING="2"><TR><TD><FONT COLOR="blue" POINT-SIZE="12.0" >5</FONT>
</TD></TR></TABLE>>
]
dup0 -> sc:i [label="MyComplex(5)"
dup0 -> sc:i [label="complex(5)"
,headlabel=<<TABLE BORDER="0" CELLPADDING="2"><TR><TD><FONT COLOR="blue" POINT-SIZE="12.0" >5</FONT>
</TD></TR></TABLE>>
]

@ -13,7 +13,6 @@ The support classes and code is covered by CMSIS-DSP license.
#include "AppNodes.h"
#include "scheduler.h"
#if !defined(CHECKERROR)
#define CHECKERROR if (cgStaticError < 0) \
{\

@ -16,7 +16,6 @@ extern "C"
#endif
extern uint32_t scheduler(int *error);
#ifdef __cplusplus

@ -242,6 +242,12 @@ The wrapper is now containing the compute graph Python scripts and you should re
# Change history
## Version 1.9.7:
* Upgrade for compatibility with google colab
* Change to compute graph API for structured datatype
* Corrected distance issues when using wrapper on aarch64
## Version 1.9.6:
* Corrections to the RFFTs APIs

@ -189,7 +189,7 @@ def build():
author = 'Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved.',
author_email = 'christophe.favergeon@arm.com',
url="https://github.com/ARM-software/CMSIS-DSP",
python_requires='>=3.6',
python_requires='>=3.7',
license="License :: OSI Approved :: Apache Software License",
platforms=['any'],
classifiers=[

Loading…
Cancel
Save