Skip to content

Commit 3fc6388

Browse files
authored
Merge pull request #839 from python-cmd2/setuptools_dependency
Add missing setuptools dependency
2 parents c2ce4b0 + 112d8c4 commit 3fc6388

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 0.9.23 (TBD, 2019)
22
* Bug Fixes
33
* Fixed bug where startup script containing a single quote in its file name was incorrectly quoted
4+
* Added missing implicit dependency on `setuptools` due to build with `setuptools_scm`
45

56
## 0.9.22 (December 9, 2019)
67
* Bug Fixes

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ The tables below list all prerequisites along with the minimum required version
5151
| [attrs](https://github.com/python-attrs/attrs) | `16.3` |
5252
| [colorama](https://github.com/tartley/colorama) | `0.3.7` |
5353
| [pyperclip](https://github.com/asweigart/pyperclip) | `1.6` |
54+
| [setuptools](https://pypi.org/project/setuptools/) | `34.4` |
5455
| [wcwidth](https://pypi.python.org/pypi/wcwidth) | `0.1.7` |
5556

5657

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
Topic :: Software Development :: Libraries :: Python Modules
3030
""".splitlines()))) # noqa: E128
3131

32-
SETUP_REQUIRES = ['setuptools_scm']
32+
SETUP_REQUIRES = ['setuptools_scm >= 3.0.0']
3333

34-
INSTALL_REQUIRES = ['pyperclip >= 1.6', 'colorama >= 0.3.7', 'attrs >= 16.3.0', 'wcwidth >= 0.1.7']
34+
INSTALL_REQUIRES = ['attrs >= 16.3.0', 'colorama >= 0.3.7', 'pyperclip >= 1.6', 'setuptools >= 34.4', 'wcwidth >= 0.1.7']
3535

3636
EXTRAS_REQUIRE = {
3737
# Windows also requires pyreadline to ensure tab completion works

0 commit comments

Comments
 (0)