diff options
| author | Glandos <bugs-github@antipoul.fr> | 2020-11-24 22:51:51 +0100 |
|---|---|---|
| committer | Glandos <bugs-github@antipoul.fr> | 2020-11-24 22:52:46 +0100 |
| commit | 0380521b4a6f4a0efcc544ca57134def94ac19ba (patch) | |
| tree | 9ee087aa5384fa781fd2e132248b921a30fe23f6 | |
| parent | ce4d64da57d5f324db62e671780b6185cfe2abe0 (diff) | |
| download | ihatemoney-mirror-0380521b4a6f4a0efcc544ca57134def94ac19ba.zip ihatemoney-mirror-0380521b4a6f4a0efcc544ca57134def94ac19ba.tar.gz ihatemoney-mirror-0380521b4a6f4a0efcc544ca57134def94ac19ba.tar.bz2 | |
Add python3.9 support
| -rw-r--r-- | README.rst | 2 | ||||
| -rw-r--r-- | docs/installation.rst | 2 | ||||
| -rw-r--r-- | setup.cfg | 1 | ||||
| -rw-r--r-- | tox.ini | 3 |
4 files changed, 5 insertions, 3 deletions
@@ -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 b33fb55..82ac12f 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. @@ -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 @@ -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 |
