From 16c6d30dadbdfc273ae4bd075f861f54801290cd Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Mon, 7 Oct 2024 11:25:22 -0400 Subject: [PATCH] Remove dependencies which were only used for Python < 3.8 since cmd2 2.5.0 now requires Python 3.8+ (#1329) --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index ce46c17d..749f254a 100755 --- a/setup.py +++ b/setup.py @@ -43,9 +43,7 @@ SETUP_REQUIRES = ['setuptools >= 34.4', 'setuptools_scm >= 3.0'] INSTALL_REQUIRES = [ - 'importlib_metadata>=1.6.0;python_version<"3.8"', 'pyperclip >= 1.6', - 'typing_extensions; python_version<"3.8"', 'wcwidth >= 0.1.7', ]