From 90480d24234a0e73e64604890c6d06a3d56ccd7e Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Tue, 27 Sep 2022 14:40:47 -0700 Subject: [PATCH 1/2] Remove use of removed mypy option This got removed in 0.981 --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e606481d8..535de6439 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -156,7 +156,6 @@ warn_no_return = true warn_return_any = false # TODO warn_unreachable = false # GH#27396 # Suppressing errors -show_none_errors = true ignore_errors = false enable_error_code = "ignore-without-code" # same as in pandas # Miscellaneous strictness flags From 6e309732d3af727eb93be38560bc9194d06fe4e7 Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Tue, 27 Sep 2022 16:10:11 -0700 Subject: [PATCH 2/2] pin mypy --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 535de6439..da4cd29b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ python = ">=3.8,<3.11" types-pytz = ">= 2022.1.1" [tool.poetry.dev-dependencies] -mypy = ">=0.971" +mypy = "==0.971" pyarrow = ">=9.0.0" pytest = ">=7.1.2" pyright = ">=1.1.266"