Skip to content

Commit 57711db

Browse files
authored
Merge pull request #1522 from Bastian-Krause/bst/limit-pyasn1
pyproject.toml: limit pysnmp's pyasn1 dependency to <0.6.0
2 parents b9047fd + 67266de commit 57711db

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

pyproject.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ pyvisa = [
6969
"pyvisa>=1.11.3",
7070
"PyVISA-py>=0.5.2",
7171
]
72-
snmp = ["pysnmp-lextudio>=4.4.12, <6"]
72+
snmp = [
73+
"pysnmp>=4.4.12, <6",
74+
"pyasn1<0.6.1",
75+
]
7376
vxi11 = ["python-vxi11>=0.9"]
7477
xena = ["xenavalkyrie>=3.0.1"]
7578
deb = [
@@ -80,7 +83,8 @@ deb = [
8083
"onewire>=0.2",
8184

8285
# labgrid[snmp]
83-
"pysnmp-lextudio>=4.4.12, <6",
86+
"pysnmp>=4.4.12, <6",
87+
"pyasn1<0.6.1",
8488
]
8589
dev = [
8690
# references to other optional dependency groups
@@ -114,7 +118,8 @@ dev = [
114118
"PyVISA-py>=0.5.2",
115119

116120
# labgrid[snmp]
117-
"pysnmp-lextudio>=4.4.12, <6",
121+
"pysnmp>=4.4.12, <6",
122+
"pyasn1<0.6.1",
118123

119124
# labgrid[vxi11]
120125
"python-vxi11>=0.9",

0 commit comments

Comments
 (0)