File tree Expand file tree Collapse file tree 5 files changed +30
-12
lines changed Expand file tree Collapse file tree 5 files changed +30
-12
lines changed Original file line number Diff line number Diff line change 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+ ^^^^^^^^^^
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1212import shlex
1313import unittest
1414import subprocess
15- from setuptools import setup , find_packages , Command
15+ from setuptools import setup , Command , find_namespace_packages
1616from setuptools .command .test import test
1717
1818pkg_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 = {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22the 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
You can’t perform that action at this time.
0 commit comments