Skip to content

Commit c76c7fe

Browse files
authored
Merge pull request #178 from CiscoTestAutomation/release_25.10
Release 25.10
2 parents 254273e + 422d16b commit c76c7fe

File tree

7 files changed

+34
-8
lines changed

7 files changed

+34
-8
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
October 2025
2+
==========
3+
4+
October 28 - Yang v25.10
5+
------------------------
6+
7+
8+
9+
.. csv-table:: New Module Versions
10+
:header: "Modules", "Version"
11+
12+
``yang.connector``, v25.10
13+
``yang.ncdiff``, v25.10
14+
15+
16+
17+
18+
Changelogs
19+
^^^^^^^^^^
20+
21+
yang.connector
22+
""""""""""""""
23+
24+
yang.ncdiff
25+
"""""""""""

connector/docs/changelog/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Changelog
44
.. toctree::
55
:maxdepth: 2
66

7+
2025/october
78
2025/september
89
2025/august
910
2025/july

connector/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import shlex
1313
import unittest
1414
import subprocess
15-
from setuptools import setup, find_packages, Command
15+
from setuptools import setup, find_namespace_packages, Command
1616
from setuptools.command.test import test
1717

1818
pkg_name = 'yang.connector'
@@ -156,7 +156,7 @@ def find_version(*paths):
156156
keywords = 'pyats cisco-shared',
157157

158158
# project packages
159-
packages = find_packages(where = 'src'),
159+
packages = find_namespace_packages(where = 'src'),
160160

161161
# project directory
162162
package_dir = {

connector/src/yang/connector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99
# metadata
10-
__version__ = "25.9"
10+
__version__ = "25.10"
1111
__author__ = (
1212
'Jonathan Yang <[email protected]>',
1313
'Siming Yuan <[email protected]',

ncdiff/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import shlex
1313
import unittest
1414
import subprocess
15-
from setuptools import setup, find_packages, Command
15+
from setuptools import setup, find_namespace_packages, Command
1616
from setuptools.command.test import test
1717

1818
pkg_name = 'yang.ncdiff'
@@ -145,7 +145,7 @@ def find_version(*paths):
145145
keywords = 'pyats cisco-shared',
146146

147147
# project packages
148-
packages = find_packages(where = 'src'),
148+
packages = find_namespace_packages(where = 'src'),
149149

150150
# project directory
151151
package_dir = {

ncdiff/src/yang/ncdiff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
edit-config message."""
55

66
# metadata
7-
__version__ = "25.9"
7+
__version__ = "25.10"
88
__author__ = 'Jonathan Yang <[email protected]>'
99
__contact__ = '[email protected]'
1010
__copyright__ = 'Cisco Systems, Inc.'

verifiers/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import shlex
1313
import unittest
1414
import subprocess
15-
from setuptools import setup, find_packages, Command
15+
from setuptools import setup, find_namespace_packages, Command
1616

1717
pkg_name = 'yang.verifiers'
1818
pkg_path = '/'.join(pkg_name.split('.'))
@@ -158,7 +158,7 @@ def find_version(*paths):
158158
keywords='pyats cisco-shared',
159159

160160
# project packages
161-
packages=find_packages(where='src'),
161+
packages=find_namespace_packages(where='src'),
162162

163163
# project directory
164164
package_dir={

0 commit comments

Comments
 (0)