diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-14 18:01:38 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-14 18:01:38 -0500 |
commit | 1038cef9a00db5cfc2c5bf04dea17ef07c0d7f1a (patch) | |
tree | 51f3355869e9740b23579b9b562fb7aac2c58dd6 | |
parent | 694c4901d0a496523caac70d392b8cdc300f1a02 (diff) | |
download | python-coveragepy-git-1038cef9a00db5cfc2c5bf04dea17ef07c0d7f1a.tar.gz |
I guess prevent installation on Python 4?
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,7 @@ setup_args = dict( classifiers=classifier_list, url="https://bitbucket.org/ned/coveragepy", - python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*", + python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4", ) # A replacement for the build_ext command which raises a single exception |