Re: [PATCH 01/11] python: expose typing information via PEP 561

2021-06-28 Thread John Snow
On Mon, Jun 28, 2021 at 4:12 PM Wainer dos Santos Moschetta < waine...@redhat.com> wrote: > Hi, > > On 6/25/21 12:45 PM, John Snow wrote: > > https://www.python.org/dev/peps/pep-0561/#specification > > Create 'py.typed' files in each subpackage that indicate to mypy that > > this is a typed module

Re: [PATCH 01/11] python: expose typing information via PEP 561

2021-06-28 Thread Wainer dos Santos Moschetta
Hi, On 6/25/21 12:45 PM, John Snow wrote: https://www.python.org/dev/peps/pep-0561/#specification Create 'py.typed' files in each subpackage that indicate to mypy that this is a typed module, so that users of any of these packages can use mypy to check their code as well. Note: Theoretically it

Re: [PATCH 01/11] python: expose typing information via PEP 561

2021-06-25 Thread Willian Rampazzo
On Fri, Jun 25, 2021 at 12:46 PM John Snow wrote: > > https://www.python.org/dev/peps/pep-0561/#specification > > Create 'py.typed' files in each subpackage that indicate to mypy that > this is a typed module, so that users of any of these packages can use > mypy to check their code as well. > > N

[PATCH 01/11] python: expose typing information via PEP 561

2021-06-25 Thread John Snow
https://www.python.org/dev/peps/pep-0561/#specification Create 'py.typed' files in each subpackage that indicate to mypy that this is a typed module, so that users of any of these packages can use mypy to check their code as well. Note: Theoretically it's possible to ditch MANIFEST.in in favor of