-
Notifications
You must be signed in to change notification settings - Fork 86
Bug: conda-forge Python 3.13 | ModuleNotFoundError: No module named 'pkg_resources' #1218
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
Comments
I still get the issue installing the package using pip:
|
Can you please show your |
You're right @yambottle! That was the issue. Maybe setuptools could be then added to the pyproject.toml |
Yeah, I made a PR added it already, it's linked to this issue if you look at the activity trace of this issue. It'll be an explicit dependency in the next release, and it's coming soon! |
Bug Report
Description
While working with conda-forge release, I found the datajoint-feedtest test would fail for me on python 3.13
Reproducibility
Include:
Expected Behavior
Additional Research and Context
setuptools isn't a default dependency of Python 3.13 anymore, suggest to add to the pyproject.toml.
However, I also tried the same on Mac, which installed the conda default channel's python 3.13 for osx-64, it does include
setuptools
, which didn't cause the same issue.I suggest we explicitly include setuptools in pyproject.yaml as a dependency(not a build dependency, but a package dependency)
Also setuptools.pkg_resources will be deprecated.
The text was updated successfully, but these errors were encountered: