Pin `pyasn1` and `pysnmplib` since `pyasn1` 0.5.0 has breaking changes and `pysnmp-pyasn1` and `pyasn1` are both using the `pyasn1` namespace (#92254)
parent
c35aabe497
commit
f38d45151a
|
@ -168,3 +168,11 @@ faust-cchardet>=2.1.18
|
|||
# which break wheel builds so we need at least 11.0.1
|
||||
# https://github.com/aaugustin/websockets/issues/1329
|
||||
websockets>=11.0.1
|
||||
|
||||
# pyasn1 0.5.0 has breaking changes which cause pysnmplib to fail
|
||||
# until they are resolved, we need to pin pyasn1 to 0.4.8 and
|
||||
# pysnmplib to 5.0.21 to avoid the issue.
|
||||
# https://github.com/pyasn1/pyasn1/pull/30#issuecomment-1517564335
|
||||
# https://github.com/pysnmp/pysnmp/issues/51
|
||||
pyasn1==0.4.8
|
||||
pysnmplib==5.0.21
|
||||
|
|
|
@ -172,6 +172,14 @@ faust-cchardet>=2.1.18
|
|||
# which break wheel builds so we need at least 11.0.1
|
||||
# https://github.com/aaugustin/websockets/issues/1329
|
||||
websockets>=11.0.1
|
||||
|
||||
# pyasn1 0.5.0 has breaking changes which cause pysnmplib to fail
|
||||
# until they are resolved, we need to pin pyasn1 to 0.4.8 and
|
||||
# pysnmplib to 5.0.21 to avoid the issue.
|
||||
# https://github.com/pyasn1/pyasn1/pull/30#issuecomment-1517564335
|
||||
# https://github.com/pysnmp/pysnmp/issues/51
|
||||
pyasn1==0.4.8
|
||||
pysnmplib==5.0.21
|
||||
"""
|
||||
|
||||
IGNORE_PRE_COMMIT_HOOK_ID = (
|
||||
|
|
Loading…
Reference in New Issue