poetry 2.1.3 tool.poetry.include difference compared with poetry 1.8.2 tool.poetry.include #10566
Unanswered
Abhinav-Upadhya-ni
asked this question in
General
Replies: 1 comment 7 replies
-
Could you provide a reproducible example? btw your name "package", suggests that you might want to use |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
hello!
So, we see an issue where we've converted our
[tool.poetry] # for poetry 1.8.2
rest of the body
include = ["package/*", "package/**/*"]
to
[too.poetry]
rest of the body
include = [
{ path = "package", format = ["sdist", "wheel"]},
]
From what I've read this should include all files within sub-directory and work the same as what we have for poetry 1.8.2,
but it doesn't, we see some files missing when we use the packaged 'package' file.
can someone help me understand this more deeply?
what would be the right way for me here?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions