summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2018-03-07 19:51:09 -0500
committerMatt Singleton <matt@xcolour.net>2018-03-07 19:51:09 -0500
commitd517561e80cec0c249ae8467f991f602019ed196 (patch)
tree7cb13b165979a0dcc60a73194f082f8f470f54ac
parentf0b2136c463f2effda5aa8adbab5ae5454334f22 (diff)
save the git commit in the description
-rw-r--r--.travis.yml2
-rw-r--r--setup.py9
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
diff --git a/setup.py b/setup.py
index 06dad3d..625bc00 100644
--- a/setup.py
+++ b/setup.py
@@ -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': [