-
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
Should pyproject.toml configs always be required to use poetry? #3443
Comments
Hello @indigoviolet, could you please describe your use case a bit more in details? It's unclear to me for what you want to use poetry. fin swimmer |
@finswimmer : Let's say I want to do a bugfix on an open source project that doesn't currently use poetry to represent their dependencies. An example is https://github.com/python-attrs/attrs/. I still do want a virtualenv while doing this. Normally I use poetry for my own projects, so I'm familiar with its commands, but now I have to either figure out how to use some other tool to create a venv, or I have to add a "fake" My suggestion was that poetry shouldn't require pypoetry.toml at all to run |
Hello @indigoviolet, this sounds similar to this feature request: #1132 fin swimmer |
Duplicate of #1132 |
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 encountered a case where I wanted to use poetry just to manage the virtualenv in a project (which uses setup.py for its build/config), and that leaves me with two options:
Add a "fake" config in
[tools.poetry]
that isn't synced withsetup.py
Use a tool other than poetry to manage the virtualenv.
Wouldn't it be better to only require the config for situations that actually need the config keys?
The text was updated successfully, but these errors were encountered: