-
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
Include tests is poetry's sdist #1109
Comments
I have just run into the same issue on Arch Linux, and this makes it difficult to package any software released using poetry (including poetry itself, and its dependencies that are also authored by @sdispater). |
I wasn't aware of it. Thanks for the heads-up. Anyone looking to workaround some of these packaging problems with pyproject.toml projects , I found @dephell to work quite well, and the maintainer is very responsive . |
Odd coincidence -- I'm actually attempting to package dephell as of yesterday. :p |
I plan on making the [tool.poetry]
# ...
packages = [
{ include = "my_package" },
{ include = "tests", format = "sdist" },
] |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Closing this issue automatically because it has not had any activity since it has been marked as stale. If you think it is still relevant and should be addressed, feel free to open a new one. |
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. |
I am starting the process of packaging poetry for openSUSE here, and notice that the sdist doesnt contain tests, and the GitHub archive doesnt contain
setup.py
. As a result, there is no single versioned tarball which can be used to build and test poetry. I need to unpack both to have a usable poetry for building a testable rpm.The easiest way to solve this is to include the tests in the poetry sdist.
The text was updated successfully, but these errors were encountered: