From 0380521b4a6f4a0efcc544ca57134def94ac19ba Mon Sep 17 00:00:00 2001 From: Glandos Date: Tue, 24 Nov 2020 22:51:51 +0100 Subject: [PATCH] Add python3.9 support --- README.rst | 2 +- docs/installation.rst | 2 +- setup.cfg | 1 + tox.ini | 3 ++- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 84d73b4a..9263e3fa 100644 --- a/README.rst +++ b/README.rst @@ -25,7 +25,7 @@ encouraged to do so. Requirements ============ -* **Python**: 3.6, 3.7, 3.8. +* **Python**: version 3.6 to 3.9. * **Backends**: MySQL, PostgreSQL, SQLite, Memory. Contributing diff --git a/docs/installation.rst b/docs/installation.rst index b33fb55d..82ac12f2 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -19,7 +19,7 @@ Requirements «Ihatemoney» depends on: -* **Python**: either 3.6, 3.7 or 3.8 will work. +* **Python**: version 3.6 to 3.9 included will work. * **A Backend**: to choose among MySQL, PostgreSQL, SQLite or Memory. * **Virtual environment** (recommended): `python3-venv` package under Debian/Ubuntu. diff --git a/setup.cfg b/setup.cfg index 43a33886..c56441bb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,6 +14,7 @@ classifiers = Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 Topic :: Internet :: WWW/HTTP Topic :: Internet :: WWW/HTTP :: WSGI :: Application diff --git a/tox.ini b/tox.ini index 372f60f9..2c9e1178 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38,py37,py36,docs,flake8,black +envlist = py39,py38,py37,py36,docs,flake8,black skip_missing_interpreters = True [testenv] @@ -42,3 +42,4 @@ python = 3.6: py36 3.7: py37 3.8: py38, docs, black, flake8 + 3.9: py39