We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The zeyple script currently does not work in python 3.12 (which is for example the shipped python Version in Ubuntu 24.04)
For me I only seem to encountered the following issue: ImportError: cannot import name 'SafeConfigParser' from 'configparser'
ImportError: cannot import name 'SafeConfigParser' from 'configparser'
The docs state, that since Python version 3.12:
configparser no longer has a SafeConfigParser class. Use the shorter ConfigParser name instead.
(Source: https://docs.python.org/3.12/whatsnew/3.12.html#configparser)
A possible solution / workaround could be to change Line 17 in zeyple.py to be something like:
from configparser import ConfigParser as SafeConfigParser # Python 3.12
instead. Although this is a bit hacky and will make it incompatible to older python3 versions, so maybe another try block would make more sense
try
The text was updated successfully, but these errors were encountered:
infertux
No branches or pull requests
The zeyple script currently does not work in python 3.12 (which is for example the shipped python Version in Ubuntu 24.04)
For me I only seem to encountered the following issue:
ImportError: cannot import name 'SafeConfigParser' from 'configparser'
The docs state, that since Python version 3.12:
(Source: https://docs.python.org/3.12/whatsnew/3.12.html#configparser)
A possible solution / workaround could be to change Line 17 in zeyple.py to be something like:
instead. Although this is a bit hacky and will make it incompatible to older python3 versions, so maybe another
try
block would make more senseThe text was updated successfully, but these errors were encountered: