Skip to content

Commit 46dc932

Browse files
committed
Update version and add PyPI upload
1 parent d7ae875 commit 46dc932

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,22 @@ script:
2121

2222
after_success:
2323
- coveralls
24+
25+
26+
# PyPI Deployment: https://docs.travis-ci.com/user/deployment/pypi/
27+
deploy:
28+
provider: pypi
29+
user: vfdev-5
30+
# If password contains non alphanumeric characters
31+
# https://github.com/travis-ci/dpl/issues/377
32+
# pass it as secured variable
33+
password: $PYPI_TOKEN
34+
# otherwise, follow "How to encrypt the password": https://docs.travis-ci.com/user/encryption-keys/
35+
# `travis encrypt deploy.password="password"`
36+
# secure: "secured_password"
37+
38+
skip_cleanup: true
39+
distributions: "sdist bdist_wheel"
40+
on:
41+
tags: true
42+
python: "3.5"

image_dataset_viz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
__version__ = '0.2.1.1'
2+
__version__ = '0.2.2'
33

44
import numpy as np
55

0 commit comments

Comments
 (0)