diff --git a/.travis.yml b/.travis.yml index 8145cfb46..77dd2ae55 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,11 +47,11 @@ deploy: - master skip_cleanup: true skip_existing: true - - provider: pypi - distributions: sdist bdist_wheel - user: spulec - password: - secure: NxnPylnTfekJmGyoufCw0lMoYRskSMJzvAIyAlJJVYKwEhmiCPOrdy5qV8i8mRZ1AkUsqU3jBZ/PD56n96clHW0E3d080UleRDj6JpyALVdeLfMqZl9kLmZ8bqakWzYq3VSJKw2zGP/L4tPGf8wTK1SUv9yl/YNDsBdCkjDverw= - on: - tags: true - skip_existing: true + # - provider: pypi + # distributions: sdist bdist_wheel + # user: spulec + # password: + # secure: NxnPylnTfekJmGyoufCw0lMoYRskSMJzvAIyAlJJVYKwEhmiCPOrdy5qV8i8mRZ1AkUsqU3jBZ/PD56n96clHW0E3d080UleRDj6JpyALVdeLfMqZl9kLmZ8bqakWzYq3VSJKw2zGP/L4tPGf8wTK1SUv9yl/YNDsBdCkjDverw= + # on: + # tags: true + # skip_existing: true diff --git a/moto/__init__.py b/moto/__init__.py index ac63e38d8..9f240cce4 100644 --- a/moto/__init__.py +++ b/moto/__init__.py @@ -3,7 +3,7 @@ import logging # logging.getLogger('boto').setLevel(logging.CRITICAL) __title__ = 'moto' -__version__ = '1.3.12' +__version__ = '1.3.13' from .acm import mock_acm # flake8: noqa from .apigateway import mock_apigateway, mock_apigateway_deprecated # flake8: noqa diff --git a/update_version_from_git.py b/update_version_from_git.py index 8f2e4f90b..fcb3b5bab 100644 --- a/update_version_from_git.py +++ b/update_version_from_git.py @@ -111,6 +111,7 @@ def release_version_correct(): assert len(new_version.split('.')) == 4, 'moto/__init__.py version should be like 0.0.2.dev' migrate_version(initpy, new_version) else: + assert False, "No non-master deployments yet" # check that we are a tag with the same version as in __init__.py assert get_version() == git_tag_name(), 'git tag/branch name not the same as moto/__init__.py __verion__'