This reverts commit d8e1e1396c
.
This commit is contained in:
parent
0827608302
commit
146e1c5eb5
8 changed files with 8 additions and 8 deletions
|
@ -2,7 +2,7 @@
|
|||
"domain": "compensation",
|
||||
"name": "Compensation",
|
||||
"documentation": "https://www.home-assistant.io/integrations/compensation",
|
||||
"requirements": ["numpy==1.22.0"],
|
||||
"requirements": ["numpy==1.21.4"],
|
||||
"codeowners": ["@Petro31"],
|
||||
"iot_class": "calculated"
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "IQVIA",
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/iqvia",
|
||||
"requirements": ["numpy==1.22.0", "pyiqvia==2021.11.0"],
|
||||
"requirements": ["numpy==1.21.4", "pyiqvia==2021.11.0"],
|
||||
"codeowners": ["@bachya"],
|
||||
"iot_class": "cloud_polling"
|
||||
}
|
||||
|
|
|
@ -161,7 +161,7 @@ def calculate_trend(indices: list[float]) -> str:
|
|||
"""Calculate the "moving average" of a set of indices."""
|
||||
index_range = np.arange(0, len(indices))
|
||||
index_array = np.array(indices)
|
||||
linear_fit = np.polyfit(index_range, index_array, 1)
|
||||
linear_fit = np.polyfit(index_range, index_array, 1) # type: ignore
|
||||
slope = round(linear_fit[0], 2)
|
||||
|
||||
if slope > 0:
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"domain": "opencv",
|
||||
"name": "OpenCV",
|
||||
"documentation": "https://www.home-assistant.io/integrations/opencv",
|
||||
"requirements": ["numpy==1.22.0", "opencv-python-headless==4.5.2.54"],
|
||||
"requirements": ["numpy==1.21.4", "opencv-python-headless==4.5.2.54"],
|
||||
"codeowners": [],
|
||||
"iot_class": "local_push"
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"tensorflow==2.3.0",
|
||||
"tf-models-official==2.3.0",
|
||||
"pycocotools==2.0.1",
|
||||
"numpy==1.22.0",
|
||||
"numpy==1.21.4",
|
||||
"pillow==8.2.0"
|
||||
],
|
||||
"codeowners": [],
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"domain": "trend",
|
||||
"name": "Trend",
|
||||
"documentation": "https://www.home-assistant.io/integrations/trend",
|
||||
"requirements": ["numpy==1.22.0"],
|
||||
"requirements": ["numpy==1.21.4"],
|
||||
"codeowners": [],
|
||||
"quality_scale": "internal",
|
||||
"iot_class": "local_push"
|
||||
|
|
|
@ -1116,7 +1116,7 @@ numato-gpio==0.10.0
|
|||
# homeassistant.components.opencv
|
||||
# homeassistant.components.tensorflow
|
||||
# homeassistant.components.trend
|
||||
numpy==1.22.0
|
||||
numpy==1.21.4
|
||||
|
||||
# homeassistant.components.oasa_telematics
|
||||
oasatelematics==0.3
|
||||
|
|
|
@ -692,7 +692,7 @@ numato-gpio==0.10.0
|
|||
# homeassistant.components.opencv
|
||||
# homeassistant.components.tensorflow
|
||||
# homeassistant.components.trend
|
||||
numpy==1.22.0
|
||||
numpy==1.21.4
|
||||
|
||||
# homeassistant.components.google
|
||||
oauth2client==4.0.0
|
||||
|
|
Loading…
Add table
Reference in a new issue