We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7ae875 commit 46dc932Copy full SHA for 46dc932
2 files changed
.travis.yml
@@ -21,3 +21,22 @@ script:
21
22
after_success:
23
- 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
@@ -1,5 +1,5 @@
1
2
-__version__ = '0.2.1.1'
+__version__ = '0.2.2'
3
4
import numpy as np
5
0 commit comments