mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Do not auto-install credstash (#9844)
This commit is contained in:
parent
9891320e7c
commit
79b029a680
@ -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
|
||||||
|
|
||||||
|
@ -159,7 +159,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…
x
Reference in New Issue
Block a user