diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 22b792d50..94cc725e4 100755 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,7 @@ +## Release 2.7.0 - 12 JAN 2024 +## Features Added +- Supported for Python 3.10 and above version + ## Release 2.6.8 - 3 OCT 2023 ## Features Added - Introduced optional argument routing instance for fs.cp() API diff --git a/lib/jnpr/junos/version.py b/lib/jnpr/junos/version.py index e2a0f875d..a9735a83b 100644 --- a/lib/jnpr/junos/version.py +++ b/lib/jnpr/junos/version.py @@ -1,5 +1,5 @@ -VERSION = "2.6.8" -DATE = "2023-Oct-03" +VERSION = "2.7.0" +DATE = "2024-Jan-12" # Augment with the internal version if present try: diff --git a/setup.py b/setup.py index 2b72f03f8..9971110f7 100755 --- a/setup.py +++ b/setup.py @@ -38,7 +38,9 @@ "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules",