From 6c6b49a4db068a6e35c0f7b233225872461ae454 Mon Sep 17 00:00:00 2001 From: John Agapiou Date: Wed, 6 Dec 2023 03:03:49 -0800 Subject: [PATCH] allow imports from typing_extensions PiperOrigin-RevId: 588358111 Change-Id: I5e0748657731b1e660a4f111d0d4d7a3fa4c6d05 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d7f758af..dbd52734 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ -[build-system] +[build-system] requires = ["setuptools>=42"] build-backend = "setuptools.build_meta" @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" profile = "google" # TODO remove once https://github.com/PyCQA/isort/pull/2149 submitted. line_length = 1000 -single_line_exclusions = ["collections.abc", "typing"] +single_line_exclusions = ["collections.abc", "typing", "typing_extensions"] known_thirdparty = ["concordia"] [tool.pyink]