-
Notifications
You must be signed in to change notification settings - Fork 210
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
Search does not work on macos arm64 #1357
Comments
Can confirm this happens to me, too. |
The output of |
You can check which python is used by khal with |
So here are my data: khal --version
type -a khal | tail -1
head -1 /opt/homebrew/bin/khal
/opt/homebrew/Cellar/khal/0.11.3/libexec/bin/python -m pip freeze
|
@WhyNotHugo Thanks for replying. Here's mine data:
|
I'd try upgrading urwid, we had similar issues recently with specific versions of urwid that contained a regression. I'll have a closet look,when I'm at my computer.Am 19.08.2024 um 18:55 schrieb gachikuku ***@***.***>:
@WhyNotHugo Thanks for replying.
Nice blog by the way.
Here's mine data:
head $(which khal)
#!/opt/homebrew/Cellar/khal/0.11.3/libexec/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from khal.cli import main_khal
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main_khal())
head $(which pip)
***@***.***/bin/python3.12
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())
khal --version
khal, version 0.11.3
type -a khal | tail -1
khal is /opt/homebrew/bin/khal
head -1 /opt/homebrew/bin/khal
#!/opt/homebrew/Cellar/khal/0.11.3/libexec/bin/python
/opt/homebrew/Cellar/khal/0.11.3/libexec/bin/python -m pip freeze
atomicwrites @ file:///private/tmp/khal--atomicwrites-20240220-5298-re3anx/atomicwrites-1.4.1
certifi==2024.7.4
cffi==1.17.0
click @ file:///private/tmp/khal--click-20240220-5298-6t5kte/click-8.1.7
click-log @ file:///private/tmp/khal--click-log-20240220-5298-enotex/click-log-0.4.0
configobj @ file:///private/tmp/khal--configobj-20240220-5298-eakrr1/configobj-5.0.8
gpg==1.23.2
icalendar @ file:///private/tmp/khal--icalendar-20240220-5298-16081e/icalendar-5.0.11
khal @ file:///private/tmp/khal-20240220-5298-jn2xq7/khal-0.11.3
meson==1.5.1
notmuch==0.38.3
notmuch2==0.38.3
pycparser==2.22
python-dateutil @ file:///private/tmp/khal--python-dateutil-20240220-5298-jfvnja/python-dateutil-2.8.2
pytz @ file:///private/tmp/khal--pytz-20240220-5298-ryvb74/pytz-2024.1
pyxdg @ file:///private/tmp/khal--pyxdg-20240220-5298-j4zkce/pyxdg-0.28
six @ file:///private/tmp/khal--six-20240220-5298-eb3pna/six-1.16.0
TBB==0.2
typing_extensions @ file:///private/tmp/khal--typing-extensions-20240220-5298-fa7krm/typing_extensions-4.9.0
tzlocal @ file:///private/tmp/khal--tzlocal-20240220-5298-zbmkn5/tzlocal-5.2
urwid @ file:///private/tmp/khal--urwid-20240220-5298-lodkaw/urwid-2.5.3
wcwidth @ file:///private/tmp/khal--wcwidth-20240220-5298-qbvmn1/wcwidth-0.2.13
wheel @ file:///opt/homebrew/Cellar/python%403.12/3.12.5/libexec/wheel-0.44.0-py3-none-any.whl#sha256=8d8a590e50bda8422000110e90bc730ebfcd8363d2de80793ac819b7f252e97d
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
I can reproduce with these dependency versions:
|
I can't reproduce with these:
|
Try upgrading urwid. |
It works! After running
Thanks everyone. |
Describe the bug
When I'm in
ikhal
and i press/
to search the program crashes.If applicable: Stack Trace
OS, version, khal version and how you installed it:
(Darwin base.local 23.5.0 Darwin Kernel Version 23.5.0: Wed May 1 20:13:18 PDT 2024; root:xnu-10063.121.3~5/RELEASE_ARM64_T6030 arm64)
pip freeze
]The text was updated successfully, but these errors were encountered: