Trigger full rebuild of package before installation #3028
Replies: 1 comment 3 replies
-
|
We do ensure this, if anything is a setuptools bug. I suggest using a more modern build backend, like hatchling. |
Beta Was this translation helpful? Give feedback.
3 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.
-
I have a package with a
key.jsondata file in it.setup.cfg:When I build it, it properly copies the data file into the package, and installs it into the relevant tox environment.
However, if I modify this content to
enigma = key_missing.json, I would expect failure in tests due to the missing data file. Then, I renamedkey.jsontokey_missing.json, and now both files are part of the package.I think this is not a
toxissue directly, but it would be great I could ensure that my package is completely re-built. What are you thoughts on that?Beta Was this translation helpful? Give feedback.
All reactions