Skip to content

Commit

Permalink
Merge pull request #2021 from napalm-automation/napalm_py_versions2
Browse files Browse the repository at this point in the history
Drop PY3.7 support in napalm 5.0.0; add tests for PY3.12
  • Loading branch information
mirceaulinic authored Mar 21, 2024
2 parents 1858e72 + d3dd5d2 commit a45cf4d
Show file tree
Hide file tree
Showing 4 changed files with 7 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.7, 3.8, 3.9, 3.10.9, 3.11]
python-version: [3.8, 3.9, 3.10.9, 3.11, 3.12.0]

steps:
- name: Checkout repository
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ Install
pip install napalm
```

*Note*: Beginning with release 5.0.0 and later, NAPALM offers support for
Python 3.8+ only.

*Note*: Beginning with release 4.0.0 and later, NAPALM offers support for
Python 3.7+ only.

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ netaddr
pyYAML
pyeapi>=1.0.2
netmiko>=4.1.0
junos-eznc>=2.6.3
junos-eznc>=2.7.0
scp
lxml>=4.3.0
ncclient
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
],
Expand Down

0 comments on commit a45cf4d

Please sign in to comment.