refactor(config): use_rich_logging instead of rich_logging

This commit is contained in:
2022-07-05 18:50:45 +02:00
parent 10d4d8f718
commit 03f11d84ce
4 changed files with 45 additions and 30 deletions

View File

@@ -1,12 +1,20 @@
{%- if cookiecutter.rich_logging == "yes" -%}
{%- if cookiecutter.use_rich_logging == "yes" or cookiecutter.uses_inflect == "yes" -%}
#
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
#
# pip-compile
#
{% endif -%}
{%- if cookiecutter.use_rich_logging == "yes" -%}
commonmark==0.9.1
# via rich
{% endif -%}
{%- if cookiecutter.uses_inflect == "yes" -%}
inflect==5.6.0
# via -r requirements.in
{% endif -%}
{%- if cookiecutter.use_rich_logging == "yes" -%}
pygments==2.12.0
# via rich
rich==12.4.4