diff options
author | Matt Singleton <matt@xcolour.net> | 2018-03-07 19:51:09 -0500 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2018-03-07 19:51:09 -0500 |
commit | d517561e80cec0c249ae8467f991f602019ed196 (patch) | |
tree | 7cb13b165979a0dcc60a73194f082f8f470f54ac | |
parent | f0b2136c463f2effda5aa8adbab5ae5454334f22 (diff) |
save the git commit in the description
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | setup.py | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index b230aac..c171321 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,5 +17,3 @@ deploy: file_glob: true file: 'dist/*.whl' skip_cleanup: true - on: - tags: true @@ -5,14 +5,17 @@ buildnum = os.environ.get('TRAVIS_BUILD_NUMBER') if buildnum is None: version = '0.dev0' else: - version = buildnum[:7] + version = buildnum gitrev = os.environ.get('TRAVIS_COMMIT') -if gitrev is not None: - version = '{}-{}'.format(version, gitrev) +if gitrev is None: + description = '' +else: + description = gitrev setup( name="unbiased", version=version, + description=description, packages=['unbiased', 'unbiased.sources'], package_data={ 'unbiased': [ |