Closed s-weigand closed 3 years ago
Thanks for submitting your first pull request! You are awesome! :hugs:
If you haven't done so already, check out Jupyter's Code of Conduct. Also, please make sure you followed the pull request template, as this will help us review your contribution more quickly.
You can meet the other Jovyans by joining our Discourse forum. There is also a intro thread there where you can stop by and say Hi! :wave:
Welcome to the Jupyter community! :tada:
Congrats on your first merged pull request in this project! :tada: Thank you for contributing, we are very proud of you! :heart:
First of all thanks for the cookiecutter template ❤️
Sadly it doesn't always work out of the box.
When creating a new extension and choosing
has_binder [n]: y
the initial push fails due tocheck-manifest
complaining about thebinder
folder not being in theMANIFEST.in
. Since the binder settings aren't needed for the extension itself, this can be fixed by excluding them from packaging.After fixing this there is an error caused by
popd
(directory stack empty
) sincepushd
wasn't used in the workflow.After removing
popd
from the workflow template a freshly created extension passes the CI.