changeset ff3653a38fd7 in modules/stock:6.2
details: https://hg.tryton.org/modules/stock?cmd=changeset&node=ff3653a38fd7
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 1d2d493a0e02 -r ff3653a38fd7 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))