Skip to content
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

importlib_metadata.metadata("") start raising ValueError since 4.12.0 #395

Closed
Czaki opened this issue Jul 4, 2022 · 3 comments
Closed
Labels
invalid This doesn't seem right

Comments

@Czaki
Copy link

Czaki commented Jul 4, 2022

Hello,

In napari we use the following code to check the metadata of the package used as a launcher of the application:

app_module = sys.modules['__main__'].__package__
try:
    metadata = importlib_metadata.metadata(app_module)
except importlib_metadata.PackageNotFoundError:
    ...

as importlib_metadata is replacement for importlib.metadata then there is inconsitece as for python 3.8-3.10 the following code executes correctly:

In [2]: importlib.metadata.metadata(None)
Out[2]: <email.message.Message at 0x7fdb7c5ff5e0>

but

importlib_metadata.metadata(None)

ends with error from #391

I found this issue, but as I understand that solution will impact python 3.11 or python 3.12

python/cpython#93259

it is possible to restore old behaviour for old version of python to not break existing code? I understand that new version of libraries should be fixed, but such updates should not break existing code.

@jaraco
Copy link
Member

jaraco commented Jul 29, 2022

The fact that metadata("") or metadata(None) did not raise an error was a bug and probably didn't do what you intended it to do. It was unexpected that users would rely on this behavior, which is why it was released as a minor release and not a major (breaking) release. I'd suggest to pin to importlib_metadata<4.12 in affected environments to work around the issue.

Because it was a backward-incompatible change introduced in a point release, it's conceivable that we should roll back the change, and then re-apply the change in a major release (5.0), but I suspect that wouldn't help your situation. Would that help any more than for you to pin to <4.12?

it is possible to restore old behaviour for old version of python to not break existing code?

importlib_metadata attempts to provide a uniform implementation across all versions of Python and does not wish to provide divergent implementations based on Python versions.

@Czaki
Copy link
Author

Czaki commented Jul 29, 2022

The core problem for us is that it affects the already released version that is available on pypi. New releases are working, but in science, it sometimes needs to install old releases for reproducibility. But if you think that such change is wrong we will try to put proper information in documentation.

@jaraco
Copy link
Member

jaraco commented Jul 29, 2022

New releases are working, but in science, it sometimes needs to install old releases for reproducibility.

I understand reproducibility is important. In that case, the best thing to do to maintain reproducibility and compatibility is not to update importlib_resources (keep the pin to <4.12).

But if you think that such change is wrong we will try to put proper information in documentation.

Indeed, I don't see a way short of restoring the prior behavior and re-introducing the bug. I'm not sure what documentation you speak of, but yes, I'd recommend to link to this issue to inform any users affected. Thanks.

@jaraco jaraco closed this as completed Jul 29, 2022
@jaraco jaraco added the invalid This doesn't seem right label Jul 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
invalid This doesn't seem right
Projects
None yet
Development

No branches or pull requests

2 participants