-
-
Notifications
You must be signed in to change notification settings - Fork 117
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
Deprecate Use of imp in Favor of importlib on Python >= 3.1 #386
Comments
I have a problem with importlib. We have a structure:
imp example works well but importlib raises with
This might be related to https://bugs.python.org/issue18018 |
@akhilman I've completed the implementation of deprecating Unfortunately the Python Bug #18018 only relates to the fact that the situation currently raises a Wondering if anyone might have any futher insights? |
Anyone interested in working this issue can checkout the
Goal is to get |
|
Hi,
|
The |
Reminder that the removal of |
Hi @derks , this is blocking usage of Python 3.12 with cement. Would you consider a PR fixing this? It's only 2-3 lines in |
@akhilman it's been a minute, not sure if you still follow... but this change is merged to |
That's great, thank you @derks! Do you think it would be possible to make a 3.0.9 release containing just the |
@coccoinomane this issue is closed (but still saw it in email). 3.0.10 is close... working through one last issue/PR. |
@coccoinomane just want to make sure you saw that 3.0.10 was released late last night. Really appreciate your support, thank you. |
Fantastic! I have updated my package to use 3.0.10, and now everything works fine 💯 |
The
imp
module is deprecated in favor ofimportlib
as of Python 3.4 ... should update Cement (with backward compat for imp on Python < 3.1).The text was updated successfully, but these errors were encountered: