mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Migrate back from pysnmp-lextudio
to pysnmp
(#123579)
This commit is contained in:
parent
91951ed734
commit
69700f068f
@ -9,7 +9,7 @@
|
|||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["brother", "pyasn1", "pysmi", "pysnmp"],
|
"loggers": ["brother", "pyasn1", "pysmi", "pysnmp"],
|
||||||
"quality_scale": "platinum",
|
"quality_scale": "platinum",
|
||||||
"requirements": ["brother==4.2.0"],
|
"requirements": ["brother==4.3.0"],
|
||||||
"zeroconf": [
|
"zeroconf": [
|
||||||
{
|
{
|
||||||
"type": "_printer._tcp.local.",
|
"type": "_printer._tcp.local.",
|
||||||
|
@ -5,5 +5,5 @@
|
|||||||
"documentation": "https://www.home-assistant.io/integrations/snmp",
|
"documentation": "https://www.home-assistant.io/integrations/snmp",
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["pyasn1", "pysmi", "pysnmp"],
|
"loggers": ["pyasn1", "pysmi", "pysnmp"],
|
||||||
"requirements": ["pysnmp-lextudio==6.0.11"]
|
"requirements": ["pysnmp==6.2.5"]
|
||||||
}
|
}
|
||||||
|
@ -156,9 +156,6 @@ websockets>=11.0.1
|
|||||||
# pysnmplib is no longer maintained and does not work with newer
|
# pysnmplib is no longer maintained and does not work with newer
|
||||||
# python
|
# python
|
||||||
pysnmplib==1000000000.0.0
|
pysnmplib==1000000000.0.0
|
||||||
# pysnmp is no longer maintained and does not work with newer
|
|
||||||
# python
|
|
||||||
pysnmp==1000000000.0.0
|
|
||||||
|
|
||||||
# The get-mac package has been replaced with getmac. Installing get-mac alongside getmac
|
# The get-mac package has been replaced with getmac. Installing get-mac alongside getmac
|
||||||
# breaks getmac due to them both sharing the same python package name inside 'getmac'.
|
# breaks getmac due to them both sharing the same python package name inside 'getmac'.
|
||||||
|
@ -622,7 +622,7 @@ bring-api==0.8.1
|
|||||||
broadlink==0.19.0
|
broadlink==0.19.0
|
||||||
|
|
||||||
# homeassistant.components.brother
|
# homeassistant.components.brother
|
||||||
brother==4.2.0
|
brother==4.3.0
|
||||||
|
|
||||||
# homeassistant.components.brottsplatskartan
|
# homeassistant.components.brottsplatskartan
|
||||||
brottsplatskartan==1.0.5
|
brottsplatskartan==1.0.5
|
||||||
@ -2208,7 +2208,7 @@ pysmartthings==0.7.8
|
|||||||
pysml==0.0.12
|
pysml==0.0.12
|
||||||
|
|
||||||
# homeassistant.components.snmp
|
# homeassistant.components.snmp
|
||||||
pysnmp-lextudio==6.0.11
|
pysnmp==6.2.5
|
||||||
|
|
||||||
# homeassistant.components.snooz
|
# homeassistant.components.snooz
|
||||||
pysnooz==0.8.6
|
pysnooz==0.8.6
|
||||||
|
@ -542,7 +542,7 @@ bring-api==0.8.1
|
|||||||
broadlink==0.19.0
|
broadlink==0.19.0
|
||||||
|
|
||||||
# homeassistant.components.brother
|
# homeassistant.components.brother
|
||||||
brother==4.2.0
|
brother==4.3.0
|
||||||
|
|
||||||
# homeassistant.components.brottsplatskartan
|
# homeassistant.components.brottsplatskartan
|
||||||
brottsplatskartan==1.0.5
|
brottsplatskartan==1.0.5
|
||||||
@ -1762,7 +1762,7 @@ pysmartthings==0.7.8
|
|||||||
pysml==0.0.12
|
pysml==0.0.12
|
||||||
|
|
||||||
# homeassistant.components.snmp
|
# homeassistant.components.snmp
|
||||||
pysnmp-lextudio==6.0.11
|
pysnmp==6.2.5
|
||||||
|
|
||||||
# homeassistant.components.snooz
|
# homeassistant.components.snooz
|
||||||
pysnooz==0.8.6
|
pysnooz==0.8.6
|
||||||
|
@ -178,9 +178,6 @@ websockets>=11.0.1
|
|||||||
# pysnmplib is no longer maintained and does not work with newer
|
# pysnmplib is no longer maintained and does not work with newer
|
||||||
# python
|
# python
|
||||||
pysnmplib==1000000000.0.0
|
pysnmplib==1000000000.0.0
|
||||||
# pysnmp is no longer maintained and does not work with newer
|
|
||||||
# python
|
|
||||||
pysnmp==1000000000.0.0
|
|
||||||
|
|
||||||
# The get-mac package has been replaced with getmac. Installing get-mac alongside getmac
|
# The get-mac package has been replaced with getmac. Installing get-mac alongside getmac
|
||||||
# breaks getmac due to them both sharing the same python package name inside 'getmac'.
|
# breaks getmac due to them both sharing the same python package name inside 'getmac'.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
from pysnmp.hlapi import Integer32
|
from pysnmp.proto.rfc1902 import Integer32
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
|
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
from pysnmp.hlapi import Integer32
|
from pysnmp.proto.rfc1902 import Integer32
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
|
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
from pysnmp.hlapi import Integer32
|
from pysnmp.proto.rfc1902 import Integer32
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from homeassistant.components.switch import DOMAIN as SWITCH_DOMAIN
|
from homeassistant.components.switch import DOMAIN as SWITCH_DOMAIN
|
||||||
|
Loading…
x
Reference in New Issue
Block a user