-
Notifications
You must be signed in to change notification settings - Fork 42
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
Bug: cyclic dependency with tomli==1.2.1
and flit_core==3.2.0
#130
Comments
Companion ticket: pypa/flit#451 |
I don't think this is a Tomli issue. You may want to look into bootstraping the foundational build/installer packages https://flit.readthedocs.io/en/latest/bootstrap.html |
I agree, to some extend this is a problem with But even installing
But I am fine with having this closed. Although some part of me wishes for stricter dependency requirements so that problems like this don't happen again. |
Hmm, yeah maybe pip's issue tracker is the right place for this? |
The thing with My best guess is that it wants to get the list of dependencies even if you tell it not to fetch them ( # This works - flit_core has no build dependencies
pip download --no-binary :all: flit_core --no-deps
# This doesn't
pip download --no-binary :all: tomli --no-deps |
|
I can not download
tomli
because there is a cyclic dependency withflit_core
.Reproducer:
Example output:
The text was updated successfully, but these errors were encountered: