diff --git a/{{cookiecutter.project_slug}}/requirements_dev.txt b/{{cookiecutter.project_slug}}/requirements.txt similarity index 90% rename from {{cookiecutter.project_slug}}/requirements_dev.txt rename to {{cookiecutter.project_slug}}/requirements.txt index f7984b22d..710ad0738 100644 --- a/{{cookiecutter.project_slug}}/requirements_dev.txt +++ b/{{cookiecutter.project_slug}}/requirements.txt @@ -1,14 +1,14 @@ -pip==19.2.3 bump2version==0.5.11 -wheel==0.33.6 -watchdog==0.9.0 +coverage==4.5.4 flake8==3.7.8 +pip==19.2.3 +{% if cookiecutter.use_pytest == 'y' -%} +pytest==4.6.5 +pytest-runner==5.1{% endif %} tox==3.14.0 -coverage==4.5.4 -Sphinx==1.8.5 twine==1.14.0 +watchdog==0.9.0 +wheel==0.33.6 {% if cookiecutter.command_line_interface|lower == 'click' -%} Click==7.0{% endif %} -{% if cookiecutter.use_pytest == 'y' -%} -pytest==4.6.5 -pytest-runner==5.1{% endif %} \ No newline at end of file +Sphinx==1.8.5 diff --git a/{{cookiecutter.project_slug}}/tox.ini b/{{cookiecutter.project_slug}}/tox.ini index d20ac240f..60006eef0 100644 --- a/{{cookiecutter.project_slug}}/tox.ini +++ b/{{cookiecutter.project_slug}}/tox.ini @@ -18,7 +18,7 @@ setenv = PYTHONPATH = {toxinidir} {% if cookiecutter.use_pytest == 'y' -%} deps = - -r{toxinidir}/requirements_dev.txt + -r{toxinidir}/requirements.txt ; If you want to make tox run the tests with the same versions, create a ; requirements.txt with the pinned versions and uncomment the following line: ; -r{toxinidir}/requirements.txt