Hack to make Bonobo work with py3.10

This commit is contained in:
2022-12-19 11:04:38 +01:00
parent feb7ec8505
commit 4cf69d362e
9 changed files with 27 additions and 25 deletions

View File

@ -45,9 +45,9 @@ python.add_requirements(
'cached-property ~=1.4',
'fs ~=2.0',
'graphviz >=0.8,<0.9',
'jinja2 ~=2.9',
'jinja2',
'mondrian ~=0.8',
'packaging ~=19.0',
'packaging',
'psutil ~=5.4',
'python-slugify ~=1.2.0',
'requests ~=2.0',
@ -74,7 +74,7 @@ python.add_requirements(
@listen(make.on_generate)
def on_make_generate(event):
makefile = event.makefile
# Sphinx
makefile['SPHINX_AUTOBUILD'] = '$(PYTHON_DIRNAME)/sphinx-autobuild'
makefile.add_target(
@ -95,7 +95,4 @@ def on_make_generate(event):
)
# vim: ft=python: