Skip to content

Commit

Permalink
Update to release 1.0.2, remove Python 3.7 aligned with NAPALM core p…
Browse files Browse the repository at this point in the history
…roject, add Python 3.12
  • Loading branch information
jbemmel committed May 4, 2024
1 parent b24e2e3 commit b6218e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit b6218e4

Please sign in to comment.