You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're using tooling that invokes the build of our Python project using PEP 517: python -m build --sdist
By default, this uses poetry-core and as such, does not load plugins.
That's actually a nice idea, but it also plugs in at a different point in Poetry's flow. One uncertainty is how two such wrappers would be able to coexist in one build setup.
I'll also take a look at the way poetry-dynamic-versioning patches the versions, perhaps it provides an interesting alternative.
We're using tooling that invokes the build of our Python project using PEP 517:
python -m build --sdist
By default, this uses
poetry-core
and as such, does not load plugins.We've noticed in other projects, like https://github.com/mtkennerly/poetry-dynamic-versioning, a custom build-backend to put into
pyproject.toml
that wrapspoetry-core
and executes the functionality of the plugin.Would it be possible to provide something similar for this plugin?
Or, if there's another way to do this, I'd love to hear about it.
Currently using this config in
pyproject.toml
:The text was updated successfully, but these errors were encountered: