diff --git a/ComputeGraph/examples/example8/test.dot b/ComputeGraph/examples/example8/test.dot
index 3245d37d..992660b3 100644
--- a/ComputeGraph/examples/example8/test.dot
+++ b/ComputeGraph/examples/example8/test.dot
@@ -64,38 +64,38 @@ source [label=<
-source:i -> filter:i [label="MyComplex(11)"
+source:i -> filter:i [label="complex(11)"
,headlabel=<
>
,taillabel=<>]
-filter:ob -> sd:i [label="MyComplex(5)"
+filter:ob -> sd:i [label="complex(5)"
,headlabel=<>
,taillabel=<>]
filter:oa ->
-dup0 [label="MyComplex(5)"
+dup0 [label="complex(5)"
,taillabel=<>]
-dup0 -> sa:i [label="MyComplex(5)"
+dup0 -> sa:i [label="complex(5)"
,headlabel=<>
]
-dup0 -> sb:i [label="MyComplex(5)"
+dup0 -> sb:i [label="complex(5)"
,headlabel=<>
]
-dup0 -> sc:i [label="MyComplex(5)"
+dup0 -> sc:i [label="complex(5)"
,headlabel=<>
]
diff --git a/ComputeGraph/examples/simple/generated/scheduler.cpp b/ComputeGraph/examples/simple/generated/scheduler.cpp
index 1d5b3add..139e2f96 100644
--- a/ComputeGraph/examples/simple/generated/scheduler.cpp
+++ b/ComputeGraph/examples/simple/generated/scheduler.cpp
@@ -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) \
{\
diff --git a/ComputeGraph/examples/simple/generated/scheduler.h b/ComputeGraph/examples/simple/generated/scheduler.h
index c42b4707..d98d9e63 100644
--- a/ComputeGraph/examples/simple/generated/scheduler.h
+++ b/ComputeGraph/examples/simple/generated/scheduler.h
@@ -16,7 +16,6 @@ extern "C"
#endif
-
extern uint32_t scheduler(int *error);
#ifdef __cplusplus
diff --git a/PythonWrapper_README.md b/PythonWrapper_README.md
index fc960a39..eb14cbb5 100644
--- a/PythonWrapper_README.md
+++ b/PythonWrapper_README.md
@@ -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
diff --git a/setup.py b/setup.py
index 4815893f..0ae88b3d 100644
--- a/setup.py
+++ b/setup.py
@@ -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=[