fix: ensure Jinja2 version >=3
This commit is contained in:
parent
05122591a0
commit
962ef05714
@ -1,5 +1,5 @@
|
|||||||
boto3
|
boto3
|
||||||
Jinja2
|
Jinja2>=3.0.0
|
||||||
click
|
click
|
||||||
pyminifier
|
pyminifier
|
||||||
cfn-lint>=0.34
|
cfn-lint>=0.34
|
||||||
|
4
setup.py
4
setup.py
@ -40,7 +40,7 @@ setup(
|
|||||||
},
|
},
|
||||||
setup_requires=["setuptools-git-versioning"],
|
setup_requires=["setuptools-git-versioning"],
|
||||||
description='Toolset to render and manage AWS Cloudformation',
|
description='Toolset to render and manage AWS Cloudformation',
|
||||||
python_requires='>=3.7',
|
python_requires='>=3.8',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
author='Stefan Reimer',
|
author='Stefan Reimer',
|
||||||
@ -50,7 +50,7 @@ setup(
|
|||||||
package_data={ 'cloudbender': ['templates/*.md', 'templates/*.yaml'], },
|
package_data={ 'cloudbender': ['templates/*.md', 'templates/*.yaml'], },
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
entry_points={'console_scripts': [ "cloudbender = cloudbender.cli:cli" ]},
|
entry_points={'console_scripts': [ "cloudbender = cloudbender.cli:cli" ]},
|
||||||
install_requires=['boto3', 'Jinja2', 'click', 'cfn-lint>=0.34', 'pyminifier', 'pulumi>=3.0.0,<4.0.0', 'pulumi-aws>=4.0.0,<5.0.0'], #'apprise'
|
install_requires=['boto3', 'Jinja2>=3.0.0', 'click', 'cfn-lint>=0.34', 'pyminifier', 'pulumi>=3.0.0,<4.0.0', 'pulumi-aws>=4.0.0,<5.0.0'], #'apprise'
|
||||||
tests_require=["pytest-cov", "moto", "mock", 'pytest'],
|
tests_require=["pytest-cov", "moto", "mock", 'pytest'],
|
||||||
cmdclass={"test": PyTest},
|
cmdclass={"test": PyTest},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
Loading…
Reference in New Issue
Block a user