Skip to content

Commit

Permalink
refactor: make sure that spaces are consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
escaped committed Jan 25, 2021
1 parent 11dfe27 commit 574dccd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions {{ cookiecutter.project_slug }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,11 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.6.1, <4.0"
{% if cookiecutter.uses_django == 'y' %}django = "^2.2"{% endif %}
{% if cookiecutter.uses_django == 'y' %}django-environ = "^0.4.5"{% endif %}
{%- if cookiecutter.uses_django == 'y' %}

django = "^2.2"
django-environ = "^0.4.5"
{%- endif %}

[tool.poetry.dev-dependencies]
autoflake = "^1.4"
Expand All @@ -53,7 +56,9 @@ pep8-naming = "^0.11.1"
pre-commit = "^2.7.1"
pytest = "^6.0.1"
pytest-cov = "^2.10.1"
{% if cookiecutter.uses_django == 'y' %}pytest-django = "^3.9.0"{% endif %}
{% if cookiecutter.uses_django == 'y' -%}
pytest-django = "^3.9.0"
{% endif -%}
pytest-mock = "^3.3.1"
tox = "^3.20.0"
tox-gh-actions = "^1.3.0"
Expand Down

0 comments on commit 574dccd

Please sign in to comment.