rigerta
04/30/2022, 6:12 PMimport singer
File "/Users/rigerta/Library/Caches/pypoetry/virtualenvs/tap-xactly-OYJ0QBnr-py3.9/lib/python3.9/site-packages/singer/__init__.py", line 32, in <module>
from singer.messages import (
File "/Users/rigerta/Library/Caches/pypoetry/virtualenvs/tap-xactly-OYJ0QBnr-py3.9/lib/python3.9/site-packages/singer/messages.py", line 5, in <module>
import ciso8601
ImportError: dlopen(/Users/rigerta/Library/Caches/pypoetry/virtualenvs/tap-xactly-OYJ0QBnr-py3.9/lib/python3.9/site-packages/ciso8601.cpython-39-darwin.so, 0x0002): tried: '/Users/rigerta/Library/Caches/pypoetry/virtualenvs/tap-xactly-OYJ0QBnr-py3.9/lib/python3.9/site-packages/ciso8601.cpython-39-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e'))
Didn’t find anything on the internet on any arm version for singer - did someone encounter and solve this problem already maybe?rigerta
04/30/2022, 6:15 PM╰─$ arch
arm64
╰─$ python --version
Python 3.9.7
rigerta
04/30/2022, 7:21 PMpython -m pip install ciso8601 --no-binary :all: --ignore-installed
python -m pip install singer-python --no-binary :all: --ignore-installed
christoph
05/01/2022, 1:46 AMtap-xactly
extractor. ciso8601
does not provide binary wheels on pypi.org , so it's really strange how the x86 version of the native library landed on your aarch64 macOS.edgar_ramirez_mondragon
05/01/2022, 4:45 AMciso8601
team can build the platform wheels but are not publishing them yet 🤷♂️
https://github.com/closeio/ciso8601/pull/109christoph
05/01/2022, 8:12 AMrigerta
05/01/2022, 11:41 AMchristoph
05/01/2022, 10:06 PMrigerta
05/02/2022, 5:47 AM