diff --git a/noxfile.py b/noxfile.py index 174d43bdb..23c89a0ea 100644 --- a/noxfile.py +++ b/noxfile.py @@ -27,8 +27,6 @@ BLACK_VERSION = "black==19.10b0" BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"] -PYTYPE_VERSION = "pytype==2021.4.9" - DEFAULT_PYTHON_VERSION = "3.8" SYSTEM_TEST_PYTHON_VERSIONS = ["3.8"] UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9"] @@ -43,7 +41,6 @@ "lint", "lint_setup_py", "blacken", - "pytype", "docs", ] @@ -172,14 +169,6 @@ def system(session): ) -@nox.session(python=DEFAULT_PYTHON_VERSION) -def pytype(session): - """Run type checks.""" - session.install("-e", ".[all]") - session.install(PYTYPE_VERSION) - session.run("pytype") - - @nox.session(python=DEFAULT_PYTHON_VERSION) def cover(session): """Run the final coverage report. diff --git a/setup.cfg b/setup.cfg index a79cb6a60..0dbaa82bc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,7 +17,6 @@ # Generated by synthtool. DO NOT EDIT! [bdist_wheel] universal = 1 - [pytype] python_version = 3.8 inputs =