Brecht Machiels

Results 214 comments of Brecht Machiels

I've made a release here: https://github.com/brechtm/ChitChat/releases/tag/v2.5.2_with_some_fixes I don't think I will be doing more work on ChitChat however. Just running WhatsApp Web in Safari works fine (and downloads work properly!)....

Thanks @mforbes! It's not obvious to me how this can be used. Do you happen to have an example noxfile.py where this is used? I suspect I may be able...

My first test: `get_versions('sphinx', 'minor', python='x.y')` always returns the same list of Sphinx versions, regardless of _x_ and _y_. EDIT: Ah, now I see that the python version corresponds to...

Thanks! I was able to get closer to get it working once I realized that I needed to set python-version dependent Sphinx requirements in my _pyproject.toml_ (as you suggested in...

Merged. Many thanks for taking the time to make this PR!

This can be configured in the global VSCode settings.Text Editor > Files > Associations). Click _Add Item_ and insert `*.myext` and `ini`. This enables syntax highlighting for `.myext`. files. Unfortunately,...

Sorry, I wasn't aware about #1. Can you merge either of these PRs, please?

@alexgarel Python opens files using the encoding returned by `locale.getpreferredencoding()`, which is 'cp1252' in Windows. So, for cross-platform compatibility, you should explicitly specify 'utf-8' when reading files. It's annoying, I...