Skip to content

Commit 9b63c7f

Browse files
committed
Added minimum version of twine to dev tool requirements in setup.py
Also: - Updated comment in tasks.py to document minimum version of twine, wheel, and setuptools required
1 parent 84c7ece commit 9b63c7f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
# install with 'pip install -e .[dev]'
7474
'dev': [
7575
'pytest', 'pytest-cov', 'tox', 'pylint', 'sphinx', 'sphinx-rtd-theme',
76-
'sphinx-autobuild','invoke', 'twine',
76+
'sphinx-autobuild', 'invoke', 'twine>=1.11',
7777
]
7878
}
7979

tasks.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
#
22
# coding=utf-8
3-
"""Development related tasks to be run with 'invoke'"""
3+
"""Development related tasks to be run with 'invoke'.
44
5+
Make sure you satisfy the following Python module requirements if you are trying to publish a release to PyPI:
6+
- twine >= 1.11.0
7+
- wheel >= 0.31.0
8+
- setuptools >= 39.1.0
9+
"""
510
import os
611
import shutil
712

0 commit comments

Comments
 (0)