mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
Add python3.9 support
This commit is contained in:
parent
ce4d64da57
commit
0380521b4a
4 changed files with 5 additions and 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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
3
tox.ini
3
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
|
||||
|
|
Loading…
Reference in a new issue