plotly / dash-component-boilerplate

Get started creating your own Dash components here.
266 stars 182 forks source link

Make dash[dev] a requirement #86

Closed tcbegley closed 4 years ago

tcbegley commented 4 years ago

Currently using cookiecutter on this project as documented in the readme fails due to PyYAML not being installed as a dependency, see #81 and #84

This is because PyYAML was removed as a standard install requirement in dash here.

This PR fixes this by simply making dash[dev] a requirement rather than dash. This is an alternative fix to #83 which allows dash to manage its own dependencies rather than adding PyYAML as a specific requirement of the boilerplate.

alexcjohnson commented 4 years ago

Thanks @tcbegley - this is indeed a more robust solution than #83. 💃