-
Notifications
You must be signed in to change notification settings - Fork 264
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
Switch to more recent 'files' API from importlib.resources #147
Conversation
…n 3.9 and importlib_metadata 1.1. Add explicit temporary file cleanup behavior using atexit. Fixes certifi#131.
Anything else to consider here? |
Also fixes #170. |
It seems that this will regress the behaviour on older versions of Python 3 which previously used the resources API but now fall back to the Python 2 behaviour. Is there any reason not to preserve that behaviour? |
Good point. Thanks for raising it. I can't remember if I considered it when I authored the change, but since I didn't mention it, it's likely I missed it. Actually, So this regression would apply to Python 3.7 and 3.8 in environments without
My hope was to avoid relying on the legacy behavior at all and environments requiring/desiring robust support on older Pythons would ensure that Would this project consider adding that dependency, perhaps as an "optional" dependency (installed by default, but with fallback behavior if it's not present)? I'd like to avoid adding fallback to legacy behaviors if possible, but I'm open to it if it's deemed necessary. |
I'm disinclined to add dependencies to this project. It's astonishing how much complexity this project contains to do the simple job of providing the contents of a file, and adding a dependency seems to be stepping even further. |
Further, https://discuss.python.org/t/deprecating-importlib-resources-legacy-api/11386/21 indicates that the
On top of that this pull request is likely inadequate for the variety of versions of I'm also disinclined to accept this. With 2 of us being against this, I'm going to close it |
Anthony was mistaken. In this post, I clarify that
That's not a fair characterization of those statements. Those projects are believed to be stable, but may evolve as any project might. Regardless of the stability, this project's current implementation is reliant on a "janky" (abusive) use of deprecated functionality in I'd offered to devise a solution with an additional fallback that doesn't introduce any new dependencies if that was this project's preferences. Instead, the PR was closed summarily with the implication that no patch that relies on I came here to help fix the issues this project has, avoid the kinds of issues that stem from mis-use of the API, and illustrate a transition from the legacy API. Let me know if there's more I can do to help. |
I request that this get reconsidered sooner rather than later given that as of python/cpython#29036 (which looks like it will be on py311a3) the current usage is warning (which is in turn breaking down-stream test suites). |
As a maintainer of requests, the whole reason it used to vendor dependencies was problems like this. Luckily it has enough sway that the lower bounds it has are fairly well respected at this point. Other projects are rarely so lucky and are often harassed into removing lower bounds because some other project has pinned the same dependency. It's not rare.
That's a fine way around saying "People won't have a supported API across multiple versions of Python they might need to support."
I must not have been clear. And somehow Cory's very direct "I'm disinclined to add dependencies" was also not clear. We're not adding backport dependencies and for what little we need from I also don't know why we'd want to suddenly be maintaining lots more code to paper over a deprecation decision that could have been more gracefully executed especially given the many months of feedback on the plan that have been thrown out without a reason other than "My opinion is the new APIs are superior, despite your opinion being that the old APIs were already sufficient". |
As found on Python 3.9 and importlib_metadata 1.1. Add explicit temporary file cleanup behavior using atexit. Fixes #131.