fix: fixed further problems with 6.0 being required
This commit is contained in:
parent
01cf345bf2
commit
959ae8d948
17
PKG-INFO
17
PKG-INFO
@ -1,10 +1,10 @@
|
|||||||
Metadata-Version: 1.1
|
Metadata-Version: 1.1
|
||||||
Name: mds_account_de_skr04
|
Name: tryton_account_de_skr04
|
||||||
Version: 6.0.0
|
Version: 6.4.0
|
||||||
Summary: Tryton module with German chart of accounts SKR04
|
Summary: Tryton module with German chart of accounts SKR04
|
||||||
Home-page: https://www.m-ds.de/
|
Home-page: yandrik.dev
|
||||||
Author: martin-data services
|
Author: Yandrik
|
||||||
Author-email: service@m-ds.de
|
Author-email: me@yandrik.dev
|
||||||
License: GPL-3
|
License: GPL-3
|
||||||
Description: Chart of accounts 'SKR04'
|
Description: Chart of accounts 'SKR04'
|
||||||
=========================
|
=========================
|
||||||
@ -16,12 +16,12 @@ Description: Chart of accounts 'SKR04'
|
|||||||
Install
|
Install
|
||||||
=======
|
=======
|
||||||
|
|
||||||
pip install mds-account-de-skr04
|
pip install git+https://git.yandrik.dev/abawo/tryton_account_de_skr04.git@18abfd8c1c4ca92199f10cf3180848b6df1cc159
|
||||||
|
|
||||||
Requires
|
Requires
|
||||||
========
|
========
|
||||||
|
|
||||||
Tryton 6.0
|
Tryton 6.4
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
@ -30,6 +30,9 @@ Description: Chart of accounts 'SKR04'
|
|||||||
|
|
||||||
- migrate to Tryton 6.0
|
- migrate to Tryton 6.0
|
||||||
|
|
||||||
|
*6.4.0 - 11.06.2022*
|
||||||
|
|
||||||
|
- change dependencies to Tryton 6.4
|
||||||
|
|
||||||
Keywords: tryton account chart german SKR04
|
Keywords: tryton account chart german SKR04
|
||||||
Platform: UNKNOWN
|
Platform: UNKNOWN
|
||||||
|
6
setup.py
6
setup.py
@ -14,7 +14,7 @@ except ImportError:
|
|||||||
|
|
||||||
here = path.abspath(path.dirname(__file__))
|
here = path.abspath(path.dirname(__file__))
|
||||||
MODULE = 'account_de_skr04'
|
MODULE = 'account_de_skr04'
|
||||||
PREFIX = 'mds'
|
PREFIX = 'tryton'
|
||||||
|
|
||||||
# Get the long description from the README file
|
# Get the long description from the README file
|
||||||
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
||||||
@ -40,13 +40,13 @@ 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 = 4
|
||||||
|
|
||||||
requires = []
|
requires = []
|
||||||
for dep in info.get('depends', []):
|
for dep in info.get('depends', []):
|
||||||
if not re.match(r'(ir|res|webdav)(\W|$)', dep):
|
if not re.match(r'(ir|res|webdav)(\W|$)', dep):
|
||||||
if dep in modversion.keys():
|
if dep in modversion.keys():
|
||||||
prefix = 'mds'
|
prefix = 'tryton'
|
||||||
if len(modversion[dep]['prefix']) > 0:
|
if len(modversion[dep]['prefix']) > 0:
|
||||||
prefix = modversion[dep]['prefix']
|
prefix = modversion[dep]['prefix']
|
||||||
|
|
||||||
|
@ -13,10 +13,10 @@ setup.py
|
|||||||
./tax_template.xml
|
./tax_template.xml
|
||||||
./tryton.cfg
|
./tryton.cfg
|
||||||
./versiondep.txt
|
./versiondep.txt
|
||||||
mds_account_de_skr04.egg-info/PKG-INFO
|
tryton_account_de_skr04.egg-info/PKG_INFO
|
||||||
mds_account_de_skr04.egg-info/SOURCES.txt
|
tryton_account_de_skr04.egg-info/SOURCES.txt
|
||||||
mds_account_de_skr04.egg-info/dependency_links.txt
|
tryton_account_de_skr04.egg-info/dependency_links.txt
|
||||||
mds_account_de_skr04.egg-info/entry_points.txt
|
tryton_account_de_skr04.egg-info/entry_points.txt
|
||||||
mds_account_de_skr04.egg-info/not-zip-safe
|
tryton_account_de_skr04.egg-info/not-zip-safe
|
||||||
mds_account_de_skr04.egg-info/requires.txt
|
tryton_account_de_skr04.egg-info/requires.txt
|
||||||
mds_account_de_skr04.egg-info/top_level.txt
|
tryton_account_de_skr04.egg-info/top_level.txt
|
||||||
|
Loading…
Reference in New Issue
Block a user