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

Support Python 3.12 #93

Open
paulmueller opened this issue Nov 3, 2024 · 1 comment
Open

Support Python 3.12 #93

paulmueller opened this issue Nov 3, 2024 · 1 comment
Labels

Comments

@paulmueller
Copy link

paulmueller commented Nov 3, 2024

Vanilla Python 3.12 is not supported at the moment due to (at least) the usage of pkg_resources:

    import Fluigent.SDK as fgt
.env/lib/python3.12/site-packages/Fluigent/SDK/__init__.py:5: in <module>
    from . import low_level
.env/lib/python3.12/site-packages/Fluigent/SDK/low_level.py:10: in <module>
    import pkg_resources
E   ModuleNotFoundError: No module named 'pkg_resources'

pkg_resources has been deprecated for quite some time and importlib.resources should be used instead. See also https://importlib-resources.readthedocs.io/en/latest/migration.html.

Workaround is to install the setuptools package.

@Ygor-Oliveira
Copy link
Collaborator

Hello,

This was first reported in #78. It had been fixed in the 24.0 release, which was withdrawn due to a bug. We should release it again soon.

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

No branches or pull requests

2 participants