From cf240c7d2b6df2f4e460b7a42b7c67d9105107ac Mon Sep 17 00:00:00 2001 From: Peter Law Date: Mon, 13 Feb 2023 19:43:57 +0000 Subject: [PATCH] Update mypy to the latest which supports Python 3.6 --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 555ae7f..096aa10 100755 --- a/setup.py +++ b/setup.py @@ -53,7 +53,10 @@ setup( 'qa': [ # Latest version which supports Python 3.6 'flake8==5.0.4', - 'mypy==0.782', + # Latest version which supports Python 3.6 + 'mypy==0.971', + # Arbitrary pins, latest at the time of pinning + 'types-setuptools==67.2.0.1', ], }, )