V1 tag and deprecation (#240)

* deprecation warning

* Update message and CLI call

* Add to readme as well
This commit is contained in:
Peter Bull
2021-03-19 22:33:34 -07:00
committed by GitHub
parent 3978e7d31a
commit c077603eb6
2 changed files with 32 additions and 1 deletions

22
hooks/pre_gen_project.py Normal file
View File

@@ -0,0 +1,22 @@
def deprecation_warning():
print("""
=============================================================================
*** DEPRECATION WARNING ***
Cookiecutter data science is moving to v2 soon, which will entail using
the command `ccds ...` rather than `cookiecutter ...`. The cookiecutter command
will continue to work, and this version of the template will still be available.
To use the legacy template, you will need to explicitly use `-c v1` to select it.
Please update any scripts/automation you have to append the `-c v1` option,
which is available now.
For example:
cookiecutter -c v1 https://github.com/drivendata/cookiecutter-data-science
=============================================================================
""")
deprecation_warning()