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",
|
||||
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
|
||||
|
||||
|
@ -159,7 +159,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…
x
Reference in New Issue
Block a user