Skip to content

Commit 696d77d

Browse files
authored
Merge pull request #130 from CiscoTestAutomation/release_24.7
Release 24.7
2 parents b9a73e3 + 301df0d commit 696d77d

File tree

5 files changed

+30
-12
lines changed

5 files changed

+30
-12
lines changed

docs/changelog/2024/july.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
July 2024
2+
==========
3+
4+
July 30 - Rest v24.7
5+
------------------------
6+
7+
8+
9+
+-------------------------------+-------------------------------+
10+
| Module | Versions |
11+
+===============================+===============================+
12+
| ``rest.connector `` | 24.7 |
13+
+-------------------------------+-------------------------------+
14+
15+
Upgrade Instructions
16+
^^^^^^^^^^^^^^^^^^^^
17+
18+
.. code-block:: bash
19+
20+
pip install --upgrade rest.connector
21+
22+
23+
24+
25+
Changelogs
26+
^^^^^^^^^^

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+
2024/july
78
2024/june
89
2024/may
910
2024/april

setup.py

Lines changed: 2 additions & 5 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, Command, find_namespace_packages
1616
from setuptools.command.test import test
1717

1818
pkg_name = 'rest.connector'
@@ -129,14 +129,11 @@ def find_version(*paths):
129129
'Topic :: Software Development :: Libraries :: Python Modules',
130130
],
131131

132-
# uses namespace package
133-
namespace_packages=['rest'],
134-
135132
# project keywords
136133
keywords='pyats cisco-shared',
137134

138135
# project packages
139-
packages=find_packages(where='src'),
136+
packages=find_namespace_packages(where='src'),
140137

141138
# project directory
142139
package_dir={

src/rest/__init__.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/rest/connector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
the device via REST api"""
33

44
# metadata
5-
__version__ = '24.6'
5+
__version__ = '24.7'
66
__author__ = ['Jean-Benoit Aubin <jeaubin@cisco.com>',
77
'Takashi Higashimura (tahigash) <tahigash@cisco.com>']
88

0 commit comments

Comments
 (0)