changeset 5a9de56af833 in modules/stock:6.0
details: https://hg.tryton.org/modules/stock?cmd=changeset&node=5a9de56af833
description:
Increase required version of python-sql
issue11235 is using Select query in Round function which is supported by
python-sql from version 1.3.0.
issue11326
review365041002
(grafted from 975715989ff86ca094b5c40a7b3d0165efd5c1c8)
diffstat:
setup.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 0bb0fb93531e -r 5a9de56af833 setup.py
--- a/setup.py Sat Mar 19 15:02:35 2022 +0100
+++ b/setup.py Sat Apr 02 00:01:46 2022 +0200
@@ -60,7 +60,7 @@
if local_version:
version += '+' + '.'.join(local_version)
-requires = ['python-sql >= 0.4', 'simpleeval']
+requires = ['python-sql >= 1.3.0', 'simpleeval']
for dep in info.get('depends', []):
if not re.match(r'(ir|res)(\W|$)', dep):
requires.append(get_require_version('trytond_%s' % dep))