-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[BUG] FileNotFoundError jaraco/text/Lorem ipsum.txt when importing pkg_resources #4487
Comments
I think this should be fixed by the just released 71.0.2, can you check against that? |
Seeing the same issue, wasn't fixed for me in 71.0.3. Writing down more context to save someone else time. bazel doesn't support whitespaces in paths There's an experimental flag that reportedly can be used if you're using bazel 7.0.0 or above. The previous workaround looks like it was removed in this PR jaraco is unlikely to rename the file. |
Thanks for the report and detailed analysis. And sorry for the inconvenience while Setuptools works to clean up some cruft that's accumulated. I'd forgotten that I'd built in a patch for jaraco.text when vendorizing it. I was really happy to be rid of all that tech debt in 9234fc3, but I'd been working from the assumption that the patches were there solely to support vendorizing and not there to support other issues, so the removal of the workaround introduced in #3077 was unintentional. As setuptools moves toward a regime that doesn't depend on vendored packages, any workarounds that apply to the vendored package will become less viable. Setuptools 71 has a preference for naturally-installed packages. What happens in a Bazel-managed environment if
That's great news! I'd really like to know (a) if employing that flag fully addresses the issue, and (b) how viable it would be for users to adopt Bazel 7. Assuming that's not a path to a long-term solution, is there another path by which setuptools and/or jaraco.text can be patched on import to the Bazel environment? I'd like for Setuptools not to have to bear the responsibility for compatibility with a downstream tool. I know at Google, which uses a similar tool, the jaraco.text was imported with a patch that renames the file to make it viable in that environment. Is there a way to do something similar for |
I can confirm that this issue still exists in 71.0.2 and 71.0.3. We are running Bazel 6.4.0. I'm not sure about what the effort would be for upgrading, so I'm leaving it for other folks who might be impacted by this to tell. As for my particular use case, we were able to fix by upgrading the Sphinx version, which does not import |
which version did you updated to? |
@w4-donguk We upgraded Sphinx from 4.1.0 to 7.4.5. They removed the import of FWIW, the Sphinx upgrade only resolved our issue by not importing I'm reporting mainly to make sure the community is aware of this unexpected side-effect. I agree with @jaraco that setuptools probably shouldn't really compromise for all kind of weirdness in the downstream systems. I personally haven't really got the time to dive into Bazel to see if there could be patches on Bazel rules to get it work as folks suggested. |
I'd prefer to do nothing here and to use the package naturally, and rely on downstream tooling to account for patching any Actually, that gives me another idea for a workaround - if bazel (or the tooling around it) had a way to install a patched version of I'm going to close this for now, but feel free to follow-up, especially if the proposed workarounds turn out to be too onerous, and we might consider re-introducing the patch of the vendored copy. |
Update Nighthawk Python dependencies, pinning setuptools<=70.3.0. Due to Bazel not supporting spaces in filenames, we have to pin setuptools to a version earlier than 71.0.0, which moves away from vendorized packages towards naturally installed ones. This eliminated a workaround which unintentionally allowed Bazel to use the jaraco.text package despite it using a filename with a space in it (which usually doesn't play nice with Bazel): pypa/setuptools#4487 (comment). We can remove this pin when Envoy (and therefore Nighthawk) is migrated to build with Bazel 7. This will allow us to build with an experimental flag that allows spaces in filenames: https://bazel.build/reference/command-line-reference#flag--experimental_inprocess_symlink_creation. Signed-off-by: Sebastian Avila <sebastianavila@google.com>
See pypa/setuptools#4487 (comment) for context as to why we're pinning. CMK-19117 Change-Id: Ib06f2a4faa0ee0eb1ed103b72850218ee27a3dc0
Fix setuptools=70.3.0 due to pypa/setuptools#4487 PiperOrigin-RevId: 683648416
setuptools version
71.0.0
Python version
Python 3.9
OS
Ubuntu Linux & macOS
Additional environment information
No response
Description
This seems to be a regression of #3072. My suspicion is commit d03cd0e might play a part of it, but I don't know enough about Python's package management to be sure.
We are building with an older version of Sphinx with Bazel, which effectively import
pkg_resources
just like what has happened in #3072, which is supposed to have been fixed via #3077.Expected behavior
Pinning setuptools==70.3.0 in requirements.txt works fine. This issue started with setuptools==71.0.0 as well as setuptools==71.0.1.
How to Reproduce
Pretty much the same as #3072, except in our case we were building an old Sphinx 4.1.0, which doesn't import
pkg_resources
anymore in new versions. We are reporting because this could happen to other projects that importpkg_resources
in a later version.Using Bazel and rules_python, build a zip executable using:
Output
The text was updated successfully, but these errors were encountered: