From b1bf0ff8882a7675a27249e579ca2294f1734b85 Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Wed, 5 Jun 2024 13:19:28 +0000 Subject: [PATCH] Remove argparse from the requirements.txt. The argparse module has been builtin to Python since Python 3.2, released in 2011 (see https://docs.python.org/3/whatsnew/3.2.html). Further, the argparse pip module has not been released or updated since 2015, and lacks some of the features of the modern, built-in argparse. Drop the pip installed version in favor of the built-in version. Signed-off-by: Chris Lalancette --- Tools/setup/requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/Tools/setup/requirements.txt b/Tools/setup/requirements.txt index 2db827d34e..b130bd55a0 100644 --- a/Tools/setup/requirements.txt +++ b/Tools/setup/requirements.txt @@ -1,5 +1,4 @@ argcomplete -argparse>=1.2 cerberus coverage empy==3.3.4