Skip to content

Commit

Permalink
Drop PY3.8 support; Add PY3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Dec 16, 2024
1 parent 5501079 commit 78a1ed1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
python-version: [ 3.9, '3.10', 3.11, 3.12 ]
python-version: [ 3.9, '3.10', 3.11, 3.12, 3.13 ]
exclude:
- os: windows-latest
python-version: 3.9
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ _Junos PyEZ_ is designed to provide the same capabilities as a user would have o

## PIP

Installation requires Python >=3.8 and associated `pip` tool
Installation requires Python >=3.9 and associated `pip` tool

pip install junos-eznc

Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ scp>=0.7.0
jinja2>=2.7.1
PyYAML>=5.1
paramiko>=3.5.0
# needed to support telnetlib (i.e. Netmiko vendored telnetlib internally)
netmiko>=4.4.0
six
pyserial
yamlordereddictloader
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"jnpr.junos.cfgro": ["*.yml"],
"jnpr.junos.resources": ["*.yml"],
},
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=install_reqs,
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand All @@ -37,11 +37,11 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down

0 comments on commit 78a1ed1

Please sign in to comment.