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."""
|
||||
MAJOR_VERSION = 0
|
||||
MINOR_VERSION = 55
|
||||
PATCH_VERSION = '1'
|
||||
PATCH_VERSION = '2'
|
||||
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
|
||||
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
|
||||
REQUIRED_PYTHON_VER = (3, 4, 2)
|
||||
|
|
|
@ -24,6 +24,7 @@ def run(args):
|
|||
'value', help="The value to save when putting a secret",
|
||||
nargs='?', default=None)
|
||||
|
||||
# pylint: disable=import-error
|
||||
import credstash
|
||||
import botocore
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ except ImportError:
|
|||
keyring = None
|
||||
|
||||
try:
|
||||
import credstash
|
||||
import credstash # pylint: disable=import-error
|
||||
except ImportError:
|
||||
credstash = None
|
||||
|
||||
|
|
|
@ -156,7 +156,7 @@ colorlog==3.0.1
|
|||
concord232==0.14
|
||||
|
||||
# homeassistant.scripts.credstash
|
||||
credstash==1.13.3
|
||||
# credstash==1.13.3
|
||||
|
||||
# homeassistant.components.sensor.crimereports
|
||||
crimereports==1.0.0
|
||||
|
|
|
@ -29,7 +29,8 @@ COMMENT_REQUIREMENTS = (
|
|||
'blinkt',
|
||||
'smbus-cffi',
|
||||
'envirophat',
|
||||
'i2csense'
|
||||
'i2csense',
|
||||
'credstash'
|
||||
)
|
||||
|
||||
TEST_REQUIREMENTS = (
|
||||
|
|
Loading…
Reference in New Issue