diff --git a/Makefile b/Makefile index 72200b3..99757fb 100644 --- a/Makefile +++ b/Makefile @@ -32,4 +32,4 @@ dist: ## This creates a ./dist directory with wheel package release: dist ## release to PyPi python3 -m pip install --upgrade twine # --repository testpypi - python3 -m twine upload dist/* + python3 -m twine upload --repository napalm-sros dist/* diff --git a/pyproject.toml b/pyproject.toml index 7b769b0..afd8ca2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,19 +4,19 @@ build-backend = "setuptools.build_meta" [project] name = "napalm-sros" -version="1.0.1" +version="1.0.2" description="Network Automation and Programmability Abstraction Layer driver for Nokia SR OS" 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", ] diff --git a/setup.py b/setup.py index 810ad71..6ea10da 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="napalm-sros", - version="1.0.1", + version="1.0.2", packages=find_packages(), package_data={"napalm_sros.templates": ["*.js"], "napalm_sros.utils.textfsm_templates": ["*.tpl"]}, author="Nokia", @@ -17,11 +17,11 @@ 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", "Development Status :: 4 - Beta", "License :: OSI Approved :: Apache Software License",