From f0b2136c463f2effda5aa8adbab5ae5454334f22 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Wed, 7 Mar 2018 17:58:48 -0500 Subject: fiddle with travis package naming --- .travis.yml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bd67b38..b230aac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,4 +18,4 @@ deploy: file: 'dist/*.whl' skip_cleanup: true on: - repo: xcolour/unbiased + tags: true diff --git a/setup.py b/setup.py index 2feb200..06dad3d 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,10 @@ buildnum = os.environ.get('TRAVIS_BUILD_NUMBER') if buildnum is None: version = '0.dev0' else: - version = buildnum + version = buildnum[:7] gitrev = os.environ.get('TRAVIS_COMMIT') if gitrev is not None: - version = '{}+{}'.format(version, gitrev) + version = '{}-{}'.format(version, gitrev) setup( name="unbiased", -- cgit v1.2.3