Matthias Käppler
Matthias Käppler
I found an answer to one problem: the error about missing `tinfo` and `ncursesw` dependencies. Stumbled upon it in this pipeline run: https://github.com/dankamongmen/notcurses/actions/runs/11151924316/job/30996427665 One needs to set `env PKG_CONFIG_PATH="/opt/homebrew/opt/ncurses/lib/pkgconfig"` when...
The linker error also disappears when setting `PKG_CONFIG_PATH` to included `ncurses` -- that leaves the problem with the missing libunistring header file. I think this is just because cmake is...
> i think you should write > > ``` > * [The choice #my_tag] > ``` How do you mean? Like this? 
There is something not quite right here. The [pip package for v3.0.9](https://pypi.org/project/notcurses/#files) has the following contents: ```shell ll src/notcurses/ total 24 0 -rw-r--r--@ 1 mk staff 0B Nov 28 2021...
Could this be related to this commit? 7b27e508cbb75f722e4c21000de413bf4dbcac82 It references this issue: https://github.com/dankamongmen/notcurses/issues/2484 How and where is the pip package assembled that is published at https://pypi.org/project/notcurses/?
Think I found it: https://github.com/dankamongmen/notcurses/blob/bfb65c252e0764796e379595ad6e089dcb573ffe/python/setup.py#L39 FWIW, this works fine for me: ```shell CFLAGS=-I/opt/homebrew/include python setup.py build ``` Why was this build step disabled? 🤔 I think for now I'll just...
Looks like a duplicate of https://github.com/dankamongmen/notcurses/issues/2624