From 1f5b8a10295e8c0aeff59a279722c7c194e1aa3a Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Wed, 13 Apr 2016 21:15:54 +0100 Subject: [PATCH] bump version, remove "dumb binaries" from build, coverage --- Makefile | 2 +- tqdm/_version.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index f909567f..ce0c7116 100644 --- a/Makefile +++ b/Makefile @@ -94,7 +94,7 @@ install: build: @make prebuildclean - python setup.py sdist --formats=gztar,zip bdist --formats=gztar,zip bdist_wheel + python setup.py sdist --formats=gztar,zip bdist_wheel python setup.py bdist_wininst pypimeta: diff --git a/tqdm/_version.py b/tqdm/_version.py index 66116fdc..1eb19594 100644 --- a/tqdm/_version.py +++ b/tqdm/_version.py @@ -1,21 +1,21 @@ # Definition of the version number -try: +try: # pragma: no cover from ._utils import _sh -except: +except: # pragma: no cover _sh = None from subprocess import STDOUT __all__ = ["__version__"] # major, minor, patch, -extra -version_info = 4, 4, 0 +version_info = 4, 4, 1 # Nice string for the version __version__ = '.'.join(map(str, version_info)) # auto -extra based on commit hash (if not tagged as release) -if (_sh is not None) and (len(version_info) < 4): +if (_sh is not None) and (len(version_info) < 4): # pragma: no cover def commit_hash(*args): try: return _sh('git', 'log', '-n', '1', '--oneline', *args,