upgrade to Tryton 6.6

This commit is contained in:
Frederik Jaeckel 2023-04-04 12:58:00 +02:00
parent c750dbe030
commit e893c1be2b
2 changed files with 5 additions and 2 deletions

View file

@ -40,7 +40,7 @@ with open(path.join(here, 'versiondep.txt'), encoding='utf-8') as f:
# tryton-version # tryton-version
major_version = 6 major_version = 6
minor_version = 0 minor_version = 6
requires = [] requires = []
for dep in info.get('depends', []): for dep in info.get('depends', []):
@ -87,6 +87,7 @@ setup(name='%s_%s' % (PREFIX, MODULE),
'License :: OSI Approved :: GNU General Public License (GPL)', 'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
], ],
keywords='tryton xrechnung edcoument', keywords='tryton xrechnung edcoument',

View file

@ -5,7 +5,7 @@
from trytond.tests.test_tryton import ModuleTestCase, with_transaction from trytond.tests.test_tryton import ModuleTestCase, with_transaction
from trytond.pool import Pool from trytond.pool import Pool
from trytond.modules.edocument_uncefact.tests.test_edocument_uncefact import get_invoice from trytond.modules.edocument_uncefact.tests.test_module import get_invoice
from unittest.mock import Mock, MagicMock from unittest.mock import Mock, MagicMock
from decimal import Decimal from decimal import Decimal
@ -51,3 +51,5 @@ class EdocTestCase(ModuleTestCase):
fhdl.write(invoice_string.decode('utf8')) fhdl.write(invoice_string.decode('utf8'))
# end EdocTestCase # end EdocTestCase
del ModuleTestCase