Skip to content
Snippets Groups Projects
Commit d120a385 authored by Jakub Ružička's avatar Jakub Ružička
Browse files

setup: require jinja<3.1 to prevent breakage

Jinja 3.1 breaks many things due to removal of obsolete features and
sometimes it's pulled in by apkg during

    pip install apkg

Stay on <3.1 for now until this mess is fixed across the ecosystem.
parent 4773ae35
No related branches found
No related tags found
1 merge request!115setup: require jinja<3.1 to prevent breakage
Pipeline #101342 failed
......@@ -4,7 +4,7 @@ build # apkg distribution
cached_property # @cached_property for python <= 3.7
click # nice CLI framework
distro # current distro detection
jinja2 # templating
jinja2<3.1 # templating (COMPAT: <3.1 in order not to break systems, apkg works fine)
packaging # version parsing
requests # HTTP for humans™
toml # config files
......@@ -27,7 +27,7 @@ install_requires =
cached_property
click
distro
jinja2
jinja2<3.1 # COMPAT: <3.1 in order not to break systems, apkg works fine
packaging
requests
toml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment