aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--setup.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 051ebf37..eb8871e3 100644
--- a/README.md
+++ b/README.md
@@ -44,9 +44,9 @@ Vela runs on Linux and Microsoft Windows 10 operating systems.
The following should be installed prior to the installation of Vela:
-* Python 3.8 or compatible
+* Python 3.7 or compatible
- Development version containing the Python/C API header files
- - e.g. `apt install python3.8-dev` or `yum install python38-devel`
+ - e.g. `apt install python3.7-dev` or `yum install python37-devel`
* Pip3
* A C99 capable compiler and associated toolchain
- For Linux operating systems, a GNU toolchain is recommended.
diff --git a/setup.py b/setup.py
index ef88f754..244fc4ed 100644
--- a/setup.py
+++ b/setup.py
@@ -77,7 +77,7 @@ setup(
"Operating System :: Microsoft :: Windows :: Windows 10",
"Programming Language :: C",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Compilers",
],
@@ -89,7 +89,7 @@ setup(
"ethosu.vela.tosa",
"ethosu.mlw_codec",
],
- python_requires="~=3.8",
+ python_requires="~=3.7",
install_requires=[
"flatbuffers==1.12.0",
"numpy",