changeset 673f825985b7 in modules/account_invoice_secondary_unit:default
details:
https://hg.tryton.org/modules/account_invoice_secondary_unit?cmd=changeset;node=673f825985b7
description:
Add support for Python 3.9
issue9685
diffstat:
.drone.yml | 6 ++++++
setup.py | 1 +
tox.ini | 4 ++--
3 files changed, 9 insertions(+), 2 deletions(-)
diffs (40 lines):
diff -r c9f25ebdb74b -r 673f825985b7 .drone.yml
--- a/.drone.yml Tue Dec 15 11:42:55 2020 +0000
+++ b/.drone.yml Sat Dec 19 17:08:44 2020 +0100
@@ -60,3 +60,9 @@
- IMAGE: python:3.8
TOXENV: py38
DATABASE: postgresql
+ - IMAGE: python:3.9
+ TOXENV: py39
+ DATABASE: sqlite
+ - IMAGE: python:3.9
+ TOXENV: py39
+ DATABASE: postgresql
diff -r c9f25ebdb74b -r 673f825985b7 setup.py
--- a/setup.py Tue Dec 15 11:42:55 2020 +0000
+++ b/setup.py Sat Dec 19 17:08:44 2020 +0100
@@ -128,6 +128,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Office/Business',
diff -r c9f25ebdb74b -r 673f825985b7 tox.ini
--- a/tox.ini Tue Dec 15 11:42:55 2020 +0000
+++ b/tox.ini Sat Dec 19 17:08:44 2020 +0100
@@ -1,10 +1,10 @@
[tox]
-envlist = {py36,py37,py38}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
+envlist = {py36,py37,py38,py39}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
[testenv]
commands = {envpython} setup.py test
deps =
- {py36,py37,py38}-postgresql: psycopg2 >= 2.5
+ {py36,py37,py38,py39}-postgresql: psycopg2 >= 2.5
pypy3-postgresql: psycopg2cffi >= 2.5
py36-sqlite: sqlitebck
setenv =