summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-07-13 22:54:15 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2020-07-13 22:54:15 -0400
commit67af98e866209863aefa44a5eccef4b460e5a19a (patch)
tree232f5c09137cb9a2fbab8685bb24390fb1cb0431 /setup.py
parenteddbbefcd64c66f60d0cf4f94c0ad0adc5773eee (diff)
downloadcmd2-git-67af98e866209863aefa44a5eccef4b460e5a19a.tar.gz
Fix a dependency version requirement which was too restrictive and required bleeding edge for no good reason
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4b5e8411..cde2db71 100755
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,7 @@ SETUP_REQUIRES = ['setuptools_scm >= 3.0']
INSTALL_REQUIRES = [
'attrs >= 16.3.0',
'colorama >= 0.3.7',
- 'importlib_metadata>=1.7.0;python_version<"3.8"',
+ 'importlib_metadata>=1.6.0;python_version<"3.8"',
'pyperclip >= 1.6',
'setuptools >= 34.4',
'wcwidth >= 0.1.7',