Skip to content

Commit

Permalink
Merge pull request #1711 from cookiecutter/dependabot
Browse files Browse the repository at this point in the history
Fixed: Removed mention of packages versions, to exclude dependabot warnings alerts
  • Loading branch information
insspb committed Jun 7, 2022
2 parents 03773ee + 0610b65 commit 5e4a5a7
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
@@ -1,4 +1,4 @@
pip==19.2.3
pip
{% if cookiecutter.command_line_interface|lower == 'click' -%}
{% include 'click-requirements.jinja' %}{% endif %}
{% if cookiecutter.use_pytest == 'y' -%}
Expand Down
@@ -1 +1 @@
Click==7.0
Click
@@ -1 +1 @@
pytest==4.6.5
pytest
@@ -1 +1 @@
Click==7.0
Click
@@ -1 +1 @@
pytest==4.6.5
pytest
@@ -1,4 +1,4 @@
pip==19.2.3
pip
{% if cookiecutter.command_line_interface|lower == 'click' -%}
{% include 'click-requirements.jinja' %}{% endif %}
{% if cookiecutter.use_pytest == 'y' -%}
Expand Down
@@ -1,5 +1,5 @@
pip==19.2.3
pip
{% if cookiecutter.command_line_interface|lower == 'click' -%}
Click==7.0{% endif %}
Click{% endif %}
{% if cookiecutter.use_pytest == 'y' -%}
pytest==4.6.5{% endif %}
pytest{% endif %}
@@ -1,4 +1,4 @@
pip==19.2.3
pip
{% if cookiecutter.command_line_interface|lower == 'click' -%}
{% include 'click-requirements.jinja' %}{% endif %}
{%- block dev_dependencies %}
Expand Down
@@ -1 +1 @@
Click==7.0
Click
@@ -1 +1 @@
pytest==4.6.5
pytest
6 changes: 3 additions & 3 deletions tests/test_templates.py
Expand Up @@ -37,7 +37,7 @@ def test_build_templates(template, output_dir):
readme = f.read().splitlines()

assert readme == [
"pip==19.2.3",
"Click==7.0",
"pytest==4.6.5",
"pip",
"Click",
"pytest",
]

0 comments on commit 5e4a5a7

Please sign in to comment.