Skip to content

Commit

Permalink
Removed Python 3.8 support. Switched to HTTPS.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Nov 5, 2024
1 parent 41c7332 commit 6d7c27a
Show file tree
Hide file tree
Showing 6 changed files with 379 additions and 378 deletions.
745 changes: 373 additions & 372 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ include = ["docs"]


[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
pysnmp = "^6.0.0"

[tool.poetry.group.dev.dependencies]
Expand All @@ -40,7 +40,7 @@ pytest-codecov = "^0.4.0"
Sphinx = "^7.0.0"
sphinx-copybutton = "^0.5.2"
sphinx-sitemap-lextudio = "^2.5.2"
furo = "^2023.1.1"
furo = "^2024.1.1"
black = "23.1.0"
pre-commit = "2.21.0"
doc8 = "^1.1.1"
Expand Down
2 changes: 1 addition & 1 deletion snmpsim/commands/cmd2rec.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def main():
metavar="<URI|PATH>",
action="append",
type=str,
default=["http://mibs.pysnmp.com/asn1/@mib@"],
default=["https://mibs.pysnmp.com/asn1/@mib@"],
help="One or more URIs pointing to a collection of ASN.1 MIB files."
'Optional "@mib@" token gets replaced with desired MIB module '
"name during MIB search.",
Expand Down
2 changes: 1 addition & 1 deletion snmpsim/commands/mib2rec.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def main():
metavar="<URI|PATH>",
action="append",
type=str,
default=["http://mibs.pysnmp.com/asn1/@mib@"],
default=["https://mibs.pysnmp.com/asn1/@mib@"],
help="One or more URIs pointing to a collection of ASN.1 MIB files."
'Optional "@mib@" token gets replaced with desired MIB module '
"name during MIB search.",
Expand Down
2 changes: 1 addition & 1 deletion snmpsim/commands/pcap2rec.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def main():
metavar="<URI|PATH>",
action="append",
type=str,
default=["http://mibs.pysnmp.com/asn1/@mib@"],
default=["https://mibs.pysnmp.com/asn1/@mib@"],
help="One or more URIs pointing to a collection of ASN.1 MIB files."
'Optional "@mib@" token gets replaced with desired MIB module '
"name during MIB search.",
Expand Down
2 changes: 1 addition & 1 deletion snmpsim/commands/rec2rec.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def main():
args = parser.parse_args()

if not args.mib_sources:
args.mib_sources = ["http://mibs.pysnmp.com/asn1/@mib@"]
args.mib_sources = ["https://mibs.pysnmp.com/asn1/@mib@"]

args.input_files = [
RECORD_TYPES[args.source_record_type].open(x) for x in args.input_files
Expand Down

0 comments on commit 6d7c27a

Please sign in to comment.