From 5dc110a6ac43b56d6494903114009a39b763acac Mon Sep 17 00:00:00 2001 From: Ayo Date: Thu, 21 May 2026 19:25:08 +0200 Subject: [PATCH] chore: Add explanation why we use Python 3.12 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38b64fd..ad043d7 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ git clone https://git.ayo.run/ayo/simple-tts cd simple-tts ``` -Create new [Python virtual environment](https://realpython.com/python-virtual-environments-a-primer/). Here I use [`conda`](https://docs.conda.io/projects/conda/en/latest/user-guide/install/), but [venv](https://docs.python.org/3/library/venv.html) is also good. +Create new [Python virtual environment](https://realpython.com/python-virtual-environments-a-primer/). Here I use [`conda`](https://docs.conda.io/projects/conda/en/latest/user-guide/install/), but [venv](https://docs.python.org/3/library/venv.html) is also good. We use Python version `3.12.6` due to a dependency failing on `3.13`. ```bash conda create -n tts python=3.12.6