-
-
Notifications
You must be signed in to change notification settings - Fork 99
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
Missing setup.py on releases? #305
Comments
Ah, it seems like this happened because of python-poetry/poetry-core#318 I guess we could explicitly set I'm going to put up a PR for that. |
Since poetry 1.3.0 setup.py files are no longer generated by default. See https://python-poetry.org/blog/announcing-poetry-1.3.0/#generate-setup-file--false
This is not true, |
Thank you for the clarification, @frostming! It looks like nixpkgs has the wrong dependencies for |
While packaging
tomlkit
0.11.8 for NixOS we noticed that starting on 0.11.7 the released packages no longer includesetup.py
(see full discussion on NixOS/nixpkgs#245440).While
setup.py
is no longer actually necessary, this creates a circular dependency to buildtomlkit
moving forward - astomlkit
itself would requirepoetry
to be able to buildtomlkit
, whilepoetry
itself depends ontomlkit
to be built.Was the removal of
setup.py
intended?The text was updated successfully, but these errors were encountered: