Skip to content

Commit

Permalink
Add support for PY3.13; use vendored version of telnetlib
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Aug 2, 2024
1 parent 72ba65e commit eca5aae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9, 3.10.9, 3.11, 3.12.0]
python-version: ["3.8", "3.9", "3.10.9", "3.11", "3.12", "3.13.0-beta.2"]

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion napalm/ios/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import os
import re
import socket
import telnetlib
from netmiko._telnetlib import telnetlib
import tempfile
import uuid
from collections import defaultdict
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jinja2
netaddr
pyYAML
pyeapi>=1.0.2
netmiko>=4.1.0
netmiko>=4.4.0
junos-eznc>=2.7.0
scp
lxml>=4.3.0
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
],
Expand Down

0 comments on commit eca5aae

Please sign in to comment.