From 4db7a55fe0b764e9ba8df2705f84090e5ee98318 Mon Sep 17 00:00:00 2001 From: henribru <6639509+henribru@users.noreply.github.com> Date: Thu, 1 Oct 2020 20:30:41 +0200 Subject: [PATCH] Only install typing in Python versions below 3.5 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1a80ce6..487a70c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ packages = [ [tool.poetry.dependencies] python = "^2.7 || ^3.4" -typing = "^3.7" +typing = { version = "^3.7", python = "<3.5" } typing-extensions = "^3.7" googleapis-common-protos = "^1.6"