Compare commits
No commits in common. "056dd1694bb792505774adfc524c95d10322dabf" and "df04148fcf57be300d9cf3b5105bd7bc596db289" have entirely different histories.
056dd1694b
...
df04148fcf
4 changed files with 7 additions and 9 deletions
|
@ -1,5 +1,7 @@
|
||||||
Copyright (C) 2021-2025 martin-data services.
|
Copyright (C) 2015-2023 Cédric Krier.
|
||||||
Copyright (C) 2024-2025 Mathias Behrle
|
Copyright (C) 2015-2023 B2CK SPRL.
|
||||||
|
Copyright (C) 2021-2024 martin-data services.
|
||||||
|
Copyright (C) 2024 Mathias Behrle
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -14,10 +14,6 @@ Requires
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
*6.8.15 - 02.05.2025*
|
|
||||||
|
|
||||||
- update license
|
|
||||||
|
|
||||||
*6.8.14 - 29.01.2025*
|
*6.8.14 - 29.01.2025*
|
||||||
|
|
||||||
- updt: optimize rounding of unit_price
|
- updt: optimize rounding of unit_price
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -13,9 +13,11 @@ here = path.abspath(path.dirname(__file__))
|
||||||
MODULE = 'edocument_xrechnung'
|
MODULE = 'edocument_xrechnung'
|
||||||
PREFIX = 'mds'
|
PREFIX = 'mds'
|
||||||
|
|
||||||
|
# Get the long description from the README file
|
||||||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
|
|
||||||
|
# tryton.cfg einlesen
|
||||||
config = ConfigParser()
|
config = ConfigParser()
|
||||||
config.readfp(open('tryton.cfg'))
|
config.readfp(open('tryton.cfg'))
|
||||||
info = dict(config.items('tryton'))
|
info = dict(config.items('tryton'))
|
||||||
|
@ -85,8 +87,6 @@ setup(
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: 3.9',
|
'Programming Language :: Python :: 3.9',
|
||||||
'Programming Language :: Python :: 3.10',
|
'Programming Language :: Python :: 3.10',
|
||||||
'Programming Language :: Python :: 3.11',
|
|
||||||
'Programming Language :: Python :: 3.12',
|
|
||||||
],
|
],
|
||||||
|
|
||||||
keywords='tryton xrechnung edcoument',
|
keywords='tryton xrechnung edcoument',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=6.8.15
|
version=6.8.14
|
||||||
depends:
|
depends:
|
||||||
edocument_uncefact
|
edocument_uncefact
|
||||||
party
|
party
|
||||||
|
|
Loading…
Reference in a new issue