diff --git a/CHANGES b/CHANGES index c551322..672c323 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +Version 0.8.2: +- fix #3 (we cannot get the revision from git for pip installs) + Version 0.8.1: - document changes (this file) diff --git a/setup.py b/setup.py index 9e73f8e..9693115 100755 --- a/setup.py +++ b/setup.py @@ -4,17 +4,11 @@ It is fairly complete for PCM devices and Mixer access. ''' -import subprocess from distutils.core import setup from distutils.extension import Extension from sys import version -def gitrev(): - rev = subprocess.check_output(['git', 'describe', '--tags', '--dirty=-dev', - '--always']) - return rev.decode('utf-8').strip() - -pyalsa_version = gitrev() +pyalsa_version = '0.8.2' # patch distutils if it's too old to cope with the "classifiers" or # "download_url" keywords