Ayoub Ghriss

Results 10 comments of Ayoub Ghriss

See here https://github.com/bastibe/python-soundfile/pull/338

@f17mkx the package from that comment did not work for me. @hiccup7 I'm working with @bastibe to push an update. You can try the [wheel here](https://github.com/aghriss/python-soundfile/releases/tag/0.11.1). I tested it on...

I've accidentally removed `_SoundFileInfo`

1. In `soundfile.py` > - Added library import: ```python from _soundfile import lib ``` > - Replaced decorator : ```python @_ffi.callback("?") ``` with: ```python @_ffi.def_extern() ``` > - added the...

it seems the issue comes from the `sndfile.h` import. I'm guessing it's a path issue or sndfile library is not installed.

I'll work on it this weekend, god willing.

I got it to work on Ubuntu and macOS. https://github.com/aghriss/python-soundfile/actions/runs/2770259758 I'm having difficulty editing Windows includes to add `sndfile.h`

The thing I'm stuck with is how to add include paths for a Windows action. I was able to install libsndfile using choco. I guess I'll try to do it...

> @aghriss I got error: > > > after install your wheel a new error got: > > soundfile.py", line 1058, in _open > raise LibsndfileError(err, prefix="Error opening {0!r}: ".format(self.name))...

The issue comes from `packages/myst-cli/src/build/html/index.ts ` line 58: ```js ...['robots.txt', 'myst-theme.css'].map((asset) => ({ ``` I think it should be: ```js ...['robots.txt', 'myst-theme.css', 'sitemap.xml', 'sitemap_style.xsl'].map((asset) => ({ ``` but that does...