JRubics / poetry-publish

An action to build and publish python package to pypi (https://pypi.org/) using poetry (https://github.com/sdispater/poetry)
BSD 3-Clause "New" or "Revised" License
129 stars 17 forks source link

Build fails because dev dependencies are not installed #5

Closed jwg4 closed 3 years ago

jwg4 commented 3 years ago

Hi there, my build using this action fails: https://github.com/jwg4/exact_cover/runs/1676582881?check_suite_focus=true because numpy is not present. Numpy is one of the configured dependencies in poetry. It is a build dep as well as an install dep.

I have a manual deploy action which runs 'poetry install' before running 'poetry build'. I think you need to do this in your entrypoint to resolve this issue.

JRubics commented 3 years ago

Hi, thank you a lot for reporting this issue, I fixed it, you can return to using the action now if you want.

JRubics commented 3 years ago

Done

jwg4 commented 3 years ago

Thank you very much!