Skip to content

Commit 52967e9

Browse files
committed
Remove PY3.8 support; add PY3.13 into GH actions; clarify licensing classifier (for pypi)
1 parent b3ba502 commit 52967e9

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.github/workflows/commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
max-parallel: 4
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10.9", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10.9", "3.11", "3.12", "3.13"]
1414

1515
steps:
1616
- name: Checkout repository

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ Install
3131
pip install napalm
3232
```
3333

34+
*Note*: Beginning with release 5.1.0 and later, NAPALM offers support for
35+
Python 3.9+ only.
36+
3437
*Note*: Beginning with release 5.0.0 and later, NAPALM offers support for
3538
Python 3.8+ only.
3639

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

40-
*Note*: Beginning with release 3.0.0 and later, NAPALM offers support for
41-
Python 3.6+ only.
42-
4343

4444
Upgrading
4545
=========

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,17 @@
1919
author="David Barroso, Kirk Byers, Mircea Ulinic",
2020
2121
description="Network Automation and Programmability Abstraction Layer with Multivendor support",
22-
license="Apache 2.0",
22+
license = "Apache-2.0"
2323
long_description=long_description,
2424
long_description_content_type="text/markdown",
2525
classifiers=[
2626
"Topic :: Utilities",
27-
"License :: OSI Approved :: Apache Software License",
28-
"Programming Language :: Python",
29-
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.8",
27+
"License :: OSI Approved :: Apache Software License 2.0 (Apache-2.0)",
3128
"Programming Language :: Python :: 3.9",
3229
"Programming Language :: Python :: 3.10",
3330
"Programming Language :: Python :: 3.11",
3431
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
3533
"Operating System :: POSIX :: Linux",
3634
"Operating System :: MacOS",
3735
],

0 commit comments

Comments
 (0)