From f0f22041cadba1067106175f9c735f20e17b8666 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Mon, 28 Feb 2022 14:55:18 +0000 Subject: [PATCH] Remove requirement for separate typing package; typing is in the Python stdlib from 3.5, and we require >= 3.6. From 3.7, installing the typing package causes import failures. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index e5f931b4..7a98029c 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,6 @@ requirements = [ "vivisect==1.0.5", "smda==1.7.0", "pefile==2021.9.3", - "typing==3.7.4.3", "pyelftools==0.28", ]