-
@alexander255 has requested a flag `--pep561-override` to allow listing packages as pep 561 compatible when they are not. This got me thinking and I think the best UX for this would be a pair of flags…
-
This is already important for us since we started using mypy to type check our code. We have to ignore all code flask-rebar currently.
-
> Largely copy/pasted from https://github.com/ethereum/py-evm/issues/1398
### Background
[Type hints](https://www.python.org/dev/peps/pep-0484/) allow us to perform static type checking, among o…
-
### What was wrong?
Type hinting is quite nice. This library doesn't have it.
### How can it be fixed?
- Add type hints to the libary
- Enforce type hints using `mypy` as part of the CI run…
-
Need to figure out a way to extract the types from the Cython module to a `*.pyi` stub file and add a `py.typed` file. This should enable autocompletion and type checking.
This will require convert…
-
#### Context
The python ecosystem has several tools to statically analyse your code and (if your editor supports that) pointing out errors like passing the wrong type as you type your code, instead…
-
### Do you want to:
* ... drop Python 2 support (and make 3.7 the new minimum required version)?
* ... migrate to pyproject.toml? (see PEP621)
* ... add inplace type hints / annotations? (see PEP56…
-
Type annotations have been used for the purpose of improving IDE code assistance so far.
MyPy has not been run, and this means that Ward currently does not pass type checking.
We should update t…
-
# Pyre Bug
**Bug description**
Pyre can't find a `Python Extension Module (.pyd)` package in site-package
**Reproduction steps**
Run pyre with the following `.pyre_configuration`:
```json
{
…
-
Dear Graham,
I have a simple decorator, which checks if Keywords are present -
It is a PEP561 Package, so type annotated - but I cant annotate for wrapt :
I tried a lot of different version…