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

Do not raise a fatal exception for an old Python interpreter #704

Open
d-w-moore opened this issue Mar 24, 2025 · 0 comments
Open

Do not raise a fatal exception for an old Python interpreter #704

d-w-moore opened this issue Mar 24, 2025 · 0 comments
Assignees
Milestone

Comments

@d-w-moore
Copy link
Collaborator

d-w-moore commented Mar 24, 2025

The following line will currently abort a Python interpreter of a version older than irods.minimum_compatible_python:

raise RuntimeError(version_message)

The exception type is too broad to simply catch in reponse to import irods, so we could either:

  1. change the exception to something like PythonVersionTooEarly, or
  2. log (at the WARNING level) the Python Interpreter loudly as too early to claim compatibility with the PRC (or use the word deprecated, if it is more apt and convenient)

I like (2) better. It's a slightly deeper change, but I think (1) is error prone. An import is done only once, and you'd have to be sure to catch the right instance of the import, which is hard for all cases. And I don't think anyone is depending on the Exception behavior as an operational tool to prematurely abort their applications.

@d-w-moore d-w-moore self-assigned this Mar 24, 2025
@alanking alanking added this to the 3.2.0 milestone Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

2 participants