Skip to content

Commit 683d049

Browse files
authored
Merge pull request #956 from python-cmd2/importlib-metadata
Fix a dependency version requirement which was too restrictive
2 parents eddbbef + 67af98e commit 683d049

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.1 (July TBD, 2020)
2+
* Bug Fixes
3+
* Relax minimum version `importlib-metadata` to >= 1.6.0 when using Python < 3.8
4+
15
## 1.2.0 (July 13, 2020)
26
* Bug Fixes
37
* Fixed `typing` module compatibility issue with Python 3.5 prior to 3.5.4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
INSTALL_REQUIRES = [
3737
'attrs >= 16.3.0',
3838
'colorama >= 0.3.7',
39-
'importlib_metadata>=1.7.0;python_version<"3.8"',
39+
'importlib_metadata>=1.6.0;python_version<"3.8"',
4040
'pyperclip >= 1.6',
4141
'setuptools >= 34.4',
4242
'wcwidth >= 0.1.7',

0 commit comments

Comments
 (0)