From 676047337dcf2f952ddec37fafb404a8df583682 Mon Sep 17 00:00:00 2001 From: Harjoth Khara Date: Thu, 7 Aug 2025 16:03:42 -0700 Subject: [PATCH] docs: update README to reflect supported Python versions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 196b48f62..73cb95bf6 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ A Transformer sequence-to-sequence model is trained on various speech processing ## Setup -We used Python 3.9.9 and [PyTorch](https://pytorch.org/) 1.10.1 to train and test our models, but the codebase is expected to be compatible with Python 3.8-3.11 and recent PyTorch versions. The codebase also depends on a few Python packages, most notably [OpenAI's tiktoken](https://github.com/openai/tiktoken) for their fast tokenizer implementation. You can download and install (or update to) the latest release of Whisper with the following command: +We used Python 3.9.9 and [PyTorch](https://pytorch.org/) 1.10.1 to train and test our models, but the codebase is expected to be compatible with Python 3.8-3.13 and recent PyTorch versions. The codebase also depends on a few Python packages, most notably [OpenAI's tiktoken](https://github.com/openai/tiktoken) for their fast tokenizer implementation. You can download and install (or update to) the latest release of Whisper with the following command: pip install -U openai-whisper