Replies: 1 comment
-
Interesting--xattr definitely needs the Mac wheel so not sure why pip is pulling in the wrong version. Xattr 10.1 is the latest so I'll update the dependency and see if that helps. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For your reference...
_lib.abi3.so
on the site-packages/xattr folder -- after comparing with the Python 3.9 installation.site-packages/xattr/_lib.abi3.so
from Python 3.9 to the same folder solves the issue.python3.11 -m pip seems to source version 0.9.9 from a location without such file.
Collecting xattr<0.10.0,>=0.9.9
Using cached xattr-0.9.9-py3-none-any.whl
python3.9 -m pip brings it from a different location, specific to MAC OS and maybe because of that it includes the said file.
Collecting xattr<0.10.0,>=0.9.9
Using cached xattr-0.9.9-cp39-cp39-macosx_10_9_x86_64.whl (15 kB)
Error on python 3.11.2
Beta Was this translation helpful? Give feedback.
All reactions