From 6b0e6f5889f8df004f58621946cb89aa42e07e55 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Tue, 16 Jul 2019 16:14:21 -0700 Subject: [PATCH] Merged mypy.ini into setup.cfg --- mypy.ini | 6 ------ setup.cfg | 7 +++++++ 2 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 mypy.ini diff --git a/mypy.ini b/mypy.ini deleted file mode 100644 index cba20d2775fbe..0000000000000 --- a/mypy.ini +++ /dev/null @@ -1,6 +0,0 @@ -[mypy] -ignore_missing_imports=True -no_implicit_optional=True - -[mypy-pandas.conftest,pandas.tests.*] -ignore_errors=True \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index e559ece2a759a..7f0062428c442 100644 --- a/setup.cfg +++ b/setup.cfg @@ -166,3 +166,10 @@ skip= asv_bench/benchmarks/dtypes.py asv_bench/benchmarks/strings.py asv_bench/benchmarks/period.py + +[mypy] +ignore_missing_imports=True +no_implicit_optional=True + +[mypy-pandas.conftest,pandas.tests.*] +ignore_errors=True \ No newline at end of file