Skip to content

Commit

Permalink
Merge pull request #1522 from Bastian-Krause/bst/limit-pyasn1
Browse files Browse the repository at this point in the history
pyproject.toml: limit pysnmp's pyasn1 dependency to <0.6.0
  • Loading branch information
Emantor authored Oct 14, 2024
2 parents b9047fd + 67266de commit 57711db
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ pyvisa = [
"pyvisa>=1.11.3",
"PyVISA-py>=0.5.2",
]
snmp = ["pysnmp-lextudio>=4.4.12, <6"]
snmp = [
"pysnmp>=4.4.12, <6",
"pyasn1<0.6.1",
]
vxi11 = ["python-vxi11>=0.9"]
xena = ["xenavalkyrie>=3.0.1"]
deb = [
Expand All @@ -80,7 +83,8 @@ deb = [
"onewire>=0.2",

# labgrid[snmp]
"pysnmp-lextudio>=4.4.12, <6",
"pysnmp>=4.4.12, <6",
"pyasn1<0.6.1",
]
dev = [
# references to other optional dependency groups
Expand Down Expand Up @@ -114,7 +118,8 @@ dev = [
"PyVISA-py>=0.5.2",

# labgrid[snmp]
"pysnmp-lextudio>=4.4.12, <6",
"pysnmp>=4.4.12, <6",
"pyasn1<0.6.1",

# labgrid[vxi11]
"python-vxi11>=0.9",
Expand Down

0 comments on commit 57711db

Please sign in to comment.