Disable non-prereleases; prep for 1.3.13.
This commit is contained in:
parent
77d5d099b9
commit
cf95313b39
16
.travis.yml
16
.travis.yml
@ -47,11 +47,11 @@ deploy:
|
|||||||
- master
|
- master
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
skip_existing: true
|
skip_existing: true
|
||||||
- provider: pypi
|
# - provider: pypi
|
||||||
distributions: sdist bdist_wheel
|
# distributions: sdist bdist_wheel
|
||||||
user: spulec
|
# user: spulec
|
||||||
password:
|
# password:
|
||||||
secure: NxnPylnTfekJmGyoufCw0lMoYRskSMJzvAIyAlJJVYKwEhmiCPOrdy5qV8i8mRZ1AkUsqU3jBZ/PD56n96clHW0E3d080UleRDj6JpyALVdeLfMqZl9kLmZ8bqakWzYq3VSJKw2zGP/L4tPGf8wTK1SUv9yl/YNDsBdCkjDverw=
|
# secure: NxnPylnTfekJmGyoufCw0lMoYRskSMJzvAIyAlJJVYKwEhmiCPOrdy5qV8i8mRZ1AkUsqU3jBZ/PD56n96clHW0E3d080UleRDj6JpyALVdeLfMqZl9kLmZ8bqakWzYq3VSJKw2zGP/L4tPGf8wTK1SUv9yl/YNDsBdCkjDverw=
|
||||||
on:
|
# on:
|
||||||
tags: true
|
# tags: true
|
||||||
skip_existing: true
|
# skip_existing: true
|
||||||
|
@ -3,7 +3,7 @@ import logging
|
|||||||
# logging.getLogger('boto').setLevel(logging.CRITICAL)
|
# logging.getLogger('boto').setLevel(logging.CRITICAL)
|
||||||
|
|
||||||
__title__ = 'moto'
|
__title__ = 'moto'
|
||||||
__version__ = '1.3.12'
|
__version__ = '1.3.13'
|
||||||
|
|
||||||
from .acm import mock_acm # flake8: noqa
|
from .acm import mock_acm # flake8: noqa
|
||||||
from .apigateway import mock_apigateway, mock_apigateway_deprecated # flake8: noqa
|
from .apigateway import mock_apigateway, mock_apigateway_deprecated # flake8: noqa
|
||||||
|
@ -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'
|
assert len(new_version.split('.')) == 4, 'moto/__init__.py version should be like 0.0.2.dev'
|
||||||
migrate_version(initpy, new_version)
|
migrate_version(initpy, new_version)
|
||||||
else:
|
else:
|
||||||
|
assert False, "No non-master deployments yet"
|
||||||
# check that we are a tag with the same version as in __init__.py
|
# 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__'
|
assert get_version() == git_tag_name(), 'git tag/branch name not the same as moto/__init__.py __verion__'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user