Skip to content

Commit

Permalink
set versioneer.tag_prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
leifwalsh committed Aug 27, 2017
1 parent 83386d4 commit c915742
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 21 deletions.
43 changes: 23 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
# Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py

language: python
python:
- 3.6
- 3.5
- 3.4

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -U tox-travis

# command to run tests, e.g. python setup.py test
script: tox

# After you create the Github repo and add it to Travis, run the
# travis_pypi_setup.py script to finish PyPI deployment setup
# This file was autogenerated and will overwrite each time you run travis_pypi_setup.py
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: leifwalsh
password:
secure: PLEASE_REPLACE_ME
on:
tags: true
secure: !!binary |
U3F3bTU5WXJScUN6UHNJQWFOeG11OWpkVGtxNDJUMHVTNHZSK3ZZZmYxM1RvUGU4RWU1bjA3L1hC
Z01Hbmt0ZGpoM1RLMlppU216VTIvQWZzWWZmK0lReENoYXo1V1dwWFRXTTlRZHdsYzl3bnpUQ3Z5
MXUrbFpHYlRmZVRUMmlCN0NIbjE1Z1BtNmhIcG9iY1U0TTc5WjQzSHp0eXZ6OUtQOVZ2dHFFTmRm
Z1gwR2NKWlZrZFo0d0pyYlROaUE5eVk2VW1Cc0NiOUNKS3BEdzZ5UHFla2YzSnUzdWhsa3F6WlVk
TW9VQzNyN3NrOWRUbWhSU09yYXZVUWQ2YXZXNVZ0U3NlbjdsVXpKN1JielBOS09TekNyUnB3Q3RJ
OUJRMlU3ci9PRGo2MG9BTURGeElVanI4bnBCSlNuU0RyQ1Bod0sxajZ3dGZrYTlXWVpLSXRPRllp
WFA2SHBPZTllak45ZWw2M3M3VHAwRERycUk3ZWdSQ281MGJhNUVNeFJMT2I0R2ZxYlZJOHQyN3ZG
RWZFU1lzQmlDTWtZMFNUVkxHMzk3ZDhNckRoYndES0w4L1hJSTBmMnp6aGtJeVh3eUJ6em14TTEz
d0x2VSs5bWIyczZzNkZQbmpIV28rTUVpci96YXJNUkJUU0RKUUE5dXNZcjIvalFteWJxL0tPWi90
ZTJhaktMMXNBSkoxTmYrVjNSRWtxTlR4aXRBV3ZTVlZDZWdRVHBobzNWeTJuTnlqL1ZSMS9RbkJn
VGhhWnlSQm8wenRYTnRQN0R3Ymx0S2pEb2VHTkFEeHBtQTRwcVpVRkMrUlR3RHRRUGMwdmJNWENW
SllWbC9DdmVtUDBpYWtRSFY4MlhPc0VHNnNPUUg1a0E3WkpUN2JPUzdyOGEvZnp1c0ZoZU1idDg9
true:
repo: leifwalsh/perfume
tags: true
install: pip install -U tox-travis
language: python
python:
- 3.6
- 3.5
- 3.4
script: tox
2 changes: 1 addition & 1 deletion perfume/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_config():
cfg = VersioneerConfig()
cfg.VCS = "git"
cfg.style = "pep440"
cfg.tag_prefix = "None"
cfg.tag_prefix = ""
cfg.parentdir_prefix = "None"
cfg.versionfile_source = "perfume/_version.py"
cfg.verbose = False
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ source = perfume
VCS = git
style = pep440
versionfile_source = perfume/_version.py
tag_prefix=''

0 comments on commit c915742

Please sign in to comment.