From: Daniele Varrazzo Date: Tue, 5 Oct 2021 13:41:55 +0000 (+0200) Subject: Install typing extensions for setuptools, pytest X-Git-Tag: 3.0~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8cdbbcf6d9ca567f07a119623f002c906030752;p=thirdparty%2Fpsycopg.git Install typing extensions for setuptools, pytest --- diff --git a/psycopg/setup.py b/psycopg/setup.py index 9f15b1e17..80f5a4dbb 100644 --- a/psycopg/setup.py +++ b/psycopg/setup.py @@ -49,6 +49,8 @@ extras_require = { "black", "flake8 ~= 3.9.2", "mypy >= 0.910", + "pytest-mypy >= 0.8.1", + "types-setuptools >= 57.4.0", "wheel", ], # Requirements needed to build the documentation diff --git a/pyproject.toml b/pyproject.toml index 6c48169e6..a2fc4abdd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,8 +22,6 @@ strict = true [[tool.mypy.overrides]] module = [ - "pytest", - "setuptools", "shapely.*", ] ignore_missing_imports = true