Will Frey
Will Frey
I won't be able to dig into this until next week at the earliest. If someone else wants to make the changes, that's more than OK with me š I'd...
Iām running into this issue as well.
Poetry v.1.2.0rc1 was released a few days ago and it looks like [poetry-core has an update-to-date JSON schema here.](https://github.com/python-poetry/poetry-core/blob/bb35db38597cdc4219a276e5be07f28d1a0a44d9/src/poetry/core/json/schemas/poetry-schema.json) Maybe this helps? š
It also looks [poetry has an additional JSON schema](https://github.com/python-poetry/poetry/blob/4392bd6e7accf77a46d474a4767c9dd48da1ad89/src/poetry/json/schemas/poetry.json) that includes, at least, the schema for `tool.poetry.source`.
If there's interest, I'd be happy to try to do the same for the following type definitions in separate PRs, replacing `Dict` with `Mapping` or `MutableMapping` and `List` with `Sequence`,...
I ran into this same issue and was able to use `pip` to install `setuptools` into the `rye` virtual environment located at `~/.rye/self` (at least for me with a default...
Hi @gerzse! I'd be happy to. I'm using a `[tool.pyright]` section in my `pyproject.toml` file to [configure Pyright](https://github.com/microsoft/pyright/blob/main/docs/configuration.md) but you can also use a `pyrightconfig.json` file. ```toml [tool.pyright] typeCheckingMode =...
@gerzse Thank you for merging it! Happy to help make the inline type annotations better.
https://github.com/redis/redis-py/blob/e82c56eb9a18ea3e7e1ab46825f79282abc93ebc/setup.py#L11 Looks like the version metadata in the setup.py file for the 5.0.9 release was never actually changed from 5.0.8 to 5.0.9. Maybe that's why? The source distributions in the...