From 129fcf1cafcd24cd5e3dfda9d755713f8ea9aaae Mon Sep 17 00:00:00 2001 From: Glandos Date: Sun, 23 Oct 2022 17:47:04 +0200 Subject: [PATCH] update documentation for python 3.11 support --- CHANGELOG.md | 2 +- README.md | 2 +- docs/installation.md | 2 +- setup.cfg | 2 ++ tox.ini | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a376356..14fcdb20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ This document describes changes between each past release. - Add Python 3.11 support The minimum supported version is now Python 3.7, and the project is -tested with up to Python 3.10 +tested with up to Python 3.11 ### Changed - Add a cancel button when editing a bill for better UX diff --git a/README.md b/README.md index 64ff4e76..ff4cdf67 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ highly encouraged to do so. ## Requirements -- **Python**: version 3.7 to 3.9. +- **Python**: version 3.7 to 3.11. - **Backends**: SQLite, PostgreSQL, MariaDB (version 10.3.2 or above), Memory. diff --git a/docs/installation.md b/docs/installation.md index 8c5a20e2..17d97b13 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -83,7 +83,7 @@ Some Paas (Platform-as-a-Service), provide a documentation or even a quick insta «Ihatemoney» depends on: -- **Python**: any version from 3.7 to 3.10 will work. +- **Python**: any version from 3.7 to 3.11 will work. - **A database backend**: choose among SQLite, PostgreSQL, MariaDB (>= 10.3.2). - **Virtual environment** (recommended): [python3-venv]{.title-ref} diff --git a/setup.cfg b/setup.cfg index 0299a5f6..f769c9a8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,6 +14,8 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: Internet :: WWW/HTTP Topic :: Internet :: WWW/HTTP :: WSGI :: Application diff --git a/tox.ini b/tox.ini index bd645706..846dbbd6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39,py38,py37,lint_docs +envlist = py311,py310,py39,py38,py37,lint_docs skip_missing_interpreters = True [testenv]