diff --git a/.travis.yml b/.travis.yml index 81e8318ec..230d3b945 100644 --- a/.travis.yml +++ b/.travis.yml @@ -578,4 +578,13 @@ script: fi after_success: + # upload to dropbox + # need DROPBOX_OAUTH_BEARER environment variable - dropbox-deployment + + # uploading to pypi using twine + # need TWINE_USERNAME, TWINE_PASSWORD and TWINE_REPOSITORY_URL env variable + - if [ "$PYTHON_BUILD" = true ] || [ "$DOCKER_BUILD" = true ]; then + pip install -U twine; + twine upload --skip-existing deploy/dist-pymod/$klayout_version/*; + fi diff --git a/setup.py b/setup.py index df4c6a573..4c01802fa 100644 --- a/setup.py +++ b/setup.py @@ -322,7 +322,7 @@ class Config(object): """ Gets the version string """ - return "0.26.0.dev13" + return "0.26.0.dev14" config = Config()