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

python 3.12 compatibility issue #8

Open
kosli opened this issue Oct 1, 2024 · 2 comments
Open

python 3.12 compatibility issue #8

kosli opened this issue Oct 1, 2024 · 2 comments

Comments

@kosli
Copy link

kosli commented Oct 1, 2024

is it possible that this module doesn't work with python 3.12?

File "/home/xxx/beancount/venv-beancount/lib/python3.12/site-packages/sepa/messages/__init__.py", line 12, in <module>
    module = loader.find_module(name).load_module(name)
             ^^^^^^^^^^^^^^^^^^
AttributeError: 'FileFinder' object has no attribute 'find_module'
@kosli kosli changed the title pyhton 3.12 compatibility issue python 3.12 compatibility issue Oct 1, 2024
@manatlan
Copy link

manatlan commented Dec 13, 2024

same !

but changed "venv\Lib\site-packages\sepa\messages_init_.py"

line :

    module = loader.find_module(name).load_module(name)

to :

    module = __import__(name)

but ModuleNotFoundError: No module named 'camt'

@JeorenB
Copy link

JeorenB commented Jan 3, 2025

same!
It worked with python 3.11, but not with 3.12 and 3.13. I don't expect it with 3.14, which will be pre-released on January 10th.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

3 participants