From a83d5f32d57bbc35e4a6558315bcc66211fc19dd Mon Sep 17 00:00:00 2001 From: Jeroen van Bemmel Date: Sat, 4 May 2024 03:56:40 +0000 Subject: [PATCH] Update config files --- pyproject.toml | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a155c1d..04eb2a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,16 +7,16 @@ name = "napalm-srl" version="1.0.4" description="Network Automation and Programmability Abstraction Layer driver for Nokia SR Linux" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" dynamic = [ "dependencies" ] classifiers = [ "Topic :: System :: Networking", "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", "Natural Language :: English", ] authors = [ diff --git a/setup.py b/setup.py index c4567c7..c872be4 100644 --- a/setup.py +++ b/setup.py @@ -17,17 +17,17 @@ classifiers=[ 'Topic :: Utilities', "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", "Natural Language :: English", 'Operating System :: POSIX :: Linux', 'Operating System :: MacOS', ], url="https://github.com/napalm-automation-community/napalm-srlinux", - python_requires=">=3.7", + python_requires=">=3.8", include_package_data=True, install_requires=reqs, )