We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
_bootstrap
👋 We are using shiv in reproducible mode, but we found that the output is not idempotent due to this block of code that adds the _bootstrap directory:
shiv/src/shiv/builder.py
Lines 165 to 177 in a353d10
In particular, iter_package_files(bootstrap) (which eventually calls Path.iterdir()) is not guaranteed to be in any particular order.
iter_package_files(bootstrap)
Path.iterdir()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
👋 We are using shiv in reproducible mode, but we found that the output is not idempotent due to this block of code that adds the
_bootstrap
directory:shiv/src/shiv/builder.py
Lines 165 to 177 in a353d10
In particular,
iter_package_files(bootstrap)
(which eventually callsPath.iterdir()
) is not guaranteed to be in any particular order.The text was updated successfully, but these errors were encountered: