layday
layday
Indeed, this is due to a bug in Pydantic (which we no longer use). If you'd like, you can open a PR against https://github.com/layday/instawow-dist-aur and I'll push the change to...
You can generate a GitHub access token by running `instawow configure access_tokens.github` without having to re-configure anything else. This would be worth mentioning in the readme (in addition to the...
Interesting. How did you install instawow? Possibly https://github.com/pyinstaller/pyinstaller/issues/1113.
Could you try the version from https://github.com/layday/instawow/actions/runs/2462905340?
Thanks, will make a new release when I get the chance.
Fixed in v1.41.0.
Is there a reason that cython isn't specified as a build dependency? That's all that's needed to make sdist installs work with pip - the files generated by `cythonize` are...
The class might not be statically known to be an attrs class (#987, #996) or it can appear in a union with other types.
It tells the type checker that if the condition is true then `cls` is of type `type[AttrsInstance]`. Simplified example: ```py def is_dict_no_typeguard(value: object) -> bool: return isinstance(value, dict) def is_dict_typeguard(value:...
There's a test in `test_mypy.yml`. Should I move it over to `typing_example.py`?