You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will likely be the default in the next mypy release so would be good to get a head start on support. This currently causes a few errors in our code base:
$ mypy --new-semantic-analyzer pandas
pandas/core/arrays/interval.py:574: error: Name 'dtype' already defined on line 129
pandas/core/indexes/timedeltas.py:308: error: Name '_box_func' already defined on line 173
pandas/io/json/__init__.py:5: error: Name 'json' is not defined
pandas/io/json/__init__.py:5: error: Name 'normalize' is not defined
pandas/io/json/__init__.py:5: error: Name 'table_schema' is not defined
The text was updated successfully, but these errors were encountered:
On Jun 26, 2019, at 6:30 PM, alimcmaster1 ***@***.***> wrote:
Interesting I can take a look @WillAyd we can validate in CI too so this doesn't regress between now and next mypy release
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
MyPy recently released a new semantic analyzer in v0.710:
https://mypy-lang.blogspot.com/2019/06/mypy-0710-released-new-semantic-analyzer.html
This will likely be the default in the next mypy release so would be good to get a head start on support. This currently causes a few errors in our code base:
The text was updated successfully, but these errors were encountered: