From b218945af0f336844507c82a689bf3264b94819e Mon Sep 17 00:00:00 2001 From: Nils Uhrberg Date: Thu, 4 Jan 2024 17:33:14 +0100 Subject: [PATCH] docs: Adjust python version information in documentation --- DEV_ENV_SETUP.md | 2 +- docs/getting-started.md | 2 +- pyproject.toml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/DEV_ENV_SETUP.md b/DEV_ENV_SETUP.md index 9b08cbda..f0d5ceff 100644 --- a/DEV_ENV_SETUP.md +++ b/DEV_ENV_SETUP.md @@ -30,7 +30,7 @@ conda create --name your-env-name python=3.x conda activate your-env-name ``` -Replace `your-env-name` with your desired environment name and `3.x` with a Python version above 3.8 and below 3.11. +Replace `your-env-name` with your desired environment name and `3.x` with a Python version above 3.8 and below 3.12. For Apple Silicon we recommend python 3.8. ## Install Poetry Dependencies diff --git a/docs/getting-started.md b/docs/getting-started.md index cdaa51dc..17add572 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -19,7 +19,7 @@ Let's get started! Before we get started, please ensure that you have the following prerequisites: -- Python version between 3.8.0 - 3.10.0 installed on your system +- Python version above 3.8.0 and below 3.12.0 installed on your system - Poetry package manager installed ([Install Poetry]( https://python-poetry.org/docs/#installation)) - Basic knowledge of Python programming diff --git a/pyproject.toml b/pyproject.toml index 73ea7ece..4729bdaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", "Topic :: Software Development",