-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use poetry-core from master as the build system #4567
Comments
+1 on this issue/question. I also tried installing both poetry and poetry-core from their respective master branches, and the |
@sinoroc answered this question in issue #3419: [build-system]
requires = ["poetry-core @ git+https://github.com/python-poetry/poetry-core.git"]
build-backend = "poetry.core.masonry.api" I remember having an issue where I needed the master branch of the build system, and the above helped me. A few months late, but hopefully it helps anyone who lands on this issue. EDIT: Thanks for the correction! Updated in my post as well for those who won't read and just copy paste the first code they see 😄 |
Brilliant. Thanks @stinodego. Minor correction regarding the link. It should be [build-system]
requires = ["poetry-core @ git+https://github.com/python-poetry/poetry-core.git"]
build-backend = "poetry.core.masonry.api" Side note: |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Issue
I wanted to see if the recently merged PR python-poetry/poetry-core#192 can solve #4380.
AFAIK the PR hasn’t made it to a release just yet. So how can I specify the build-system in my
pyproject.toml
to use the latest poetry-core i.e from its master branch.The text was updated successfully, but these errors were encountered: