From c39f5540712b5283d1e20e3a8dd005c7fe1fd518 Mon Sep 17 00:00:00 2001
From: Oliver Walters <oliver.henry.walters@gmail.com>
Date: Thu, 21 Jan 2021 09:58:46 +1100
Subject: [PATCH] Add warning admonition for minimum python version

---
 docs/start/install.md | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/docs/start/install.md b/docs/start/install.md
index 43326b9..f2aa43d 100644
--- a/docs/start/install.md
+++ b/docs/start/install.md
@@ -70,6 +70,9 @@ pkg install py37-invoke
 
 To install InvenTree you will need python3 (>3.6) installed, as well as PIP (the Python package manager), and the Invoke tool.
 
+!!! warning "Python Version"
+    InvenTree requrires Python 3.6 (or newer). If your system has an older version of Python installed, you will need to follow the update instructions for your OS.
+
 ### Python Virtual Environment
 
 Installing the required Python packages inside a virtual environment allows a local install separate to the system-wide Python installation. While not strictly necessary, using a virtual environment is highly recommended as it prevents conflicts between the different Python installations.
@@ -84,7 +87,7 @@ python3 -m venv inventree-env
 source inventree-env/bin/activate
 ```
 
-??? note "Virtual Environment on Windows"
+!!! note "Virtual Environment on Windows"
 	To create and activate a virtual environment in Windows, run the following commands:
 	```
 	py -m venv inventree-env