File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,22 @@ script:
2121
2222after_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"
Original file line number Diff line number Diff line change 11
2- __version__ = '0.2.1.1 '
2+ __version__ = '0.2.2 '
33
44import numpy as np
55
You can’t perform that action at this time.
0 commit comments