Skip to content

Commit 1f25aa7

Browse files
authored
Release 0.55.2 (home-assistant#9904)
* Do not auto-install credstash (home-assistant#9844) * Pump release to 0.55.2
1 parent c6b285c commit 1f25aa7

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

homeassistant/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""Constants used by Home Assistant components."""
33
MAJOR_VERSION = 0
44
MINOR_VERSION = 55
5-
PATCH_VERSION = '1'
5+
PATCH_VERSION = '2'
66
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
77
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
88
REQUIRED_PYTHON_VER = (3, 4, 2)

homeassistant/scripts/credstash.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def run(args):
2424
'value', help="The value to save when putting a secret",
2525
nargs='?', default=None)
2626

27+
# pylint: disable=import-error
2728
import credstash
2829
import botocore
2930

homeassistant/util/yaml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
keyring = None
1414

1515
try:
16-
import credstash
16+
import credstash # pylint: disable=import-error
1717
except ImportError:
1818
credstash = None
1919

requirements_all.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ colorlog==3.0.1
156156
concord232==0.14
157157

158158
# homeassistant.scripts.credstash
159-
credstash==1.13.3
159+
# credstash==1.13.3
160160

161161
# homeassistant.components.sensor.crimereports
162162
crimereports==1.0.0

script/gen_requirements_all.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
'blinkt',
3030
'smbus-cffi',
3131
'envirophat',
32-
'i2csense'
32+
'i2csense',
33+
'credstash'
3334
)
3435

3536
TEST_REQUIREMENTS = (

0 commit comments

Comments
 (0)