Release 0.55.2 (#9904)
* Do not auto-install credstash (#9844) * Pump release to 0.55.2pull/9969/head^2 0.55.2
parent
c6b285c666
commit
1f25aa74dd
|
@ -2,7 +2,7 @@
|
||||||
"""Constants used by Home Assistant components."""
|
"""Constants used by Home Assistant components."""
|
||||||
MAJOR_VERSION = 0
|
MAJOR_VERSION = 0
|
||||||
MINOR_VERSION = 55
|
MINOR_VERSION = 55
|
||||||
PATCH_VERSION = '1'
|
PATCH_VERSION = '2'
|
||||||
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
|
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
|
||||||
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
|
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
|
||||||
REQUIRED_PYTHON_VER = (3, 4, 2)
|
REQUIRED_PYTHON_VER = (3, 4, 2)
|
||||||
|
|
|
@ -24,6 +24,7 @@ def run(args):
|
||||||
'value', help="The value to save when putting a secret",
|
'value', help="The value to save when putting a secret",
|
||||||
nargs='?', default=None)
|
nargs='?', default=None)
|
||||||
|
|
||||||
|
# pylint: disable=import-error
|
||||||
import credstash
|
import credstash
|
||||||
import botocore
|
import botocore
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ except ImportError:
|
||||||
keyring = None
|
keyring = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import credstash
|
import credstash # pylint: disable=import-error
|
||||||
except ImportError:
|
except ImportError:
|
||||||
credstash = None
|
credstash = None
|
||||||
|
|
||||||
|
|
|
@ -156,7 +156,7 @@ colorlog==3.0.1
|
||||||
concord232==0.14
|
concord232==0.14
|
||||||
|
|
||||||
# homeassistant.scripts.credstash
|
# homeassistant.scripts.credstash
|
||||||
credstash==1.13.3
|
# credstash==1.13.3
|
||||||
|
|
||||||
# homeassistant.components.sensor.crimereports
|
# homeassistant.components.sensor.crimereports
|
||||||
crimereports==1.0.0
|
crimereports==1.0.0
|
||||||
|
|
|
@ -29,7 +29,8 @@ COMMENT_REQUIREMENTS = (
|
||||||
'blinkt',
|
'blinkt',
|
||||||
'smbus-cffi',
|
'smbus-cffi',
|
||||||
'envirophat',
|
'envirophat',
|
||||||
'i2csense'
|
'i2csense',
|
||||||
|
'credstash'
|
||||||
)
|
)
|
||||||
|
|
||||||
TEST_REQUIREMENTS = (
|
TEST_REQUIREMENTS = (
|
||||||
|
|
Loading…
Reference in New Issue