Skip to content

Commit cf7d737

Browse files
[UPDATE] Version Bump
Changes in file multicast/__init__.py: - minor Version Bump Changes in file setup.cfg: - minor Version Bump Changes in file setup.py: - minor Version Bump
1 parent 19f4624 commit cf7d737

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

multicast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393

9494
global __version__ # skipcq: PYL-W0604
9595

96-
__version__ = """2.0.0-rc3"""
96+
__version__ = """2.0.0-rc6"""
9797
"""The version of this program.
9898
9999
Minimal Acceptance Testing:

setup.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = multicast
3-
version = 2.0.0-rc3
3+
version = 2.0.0-rc6
44
author = Mr. Walls
55
author_email = [email protected]
66
description = Python Multicast Repo for Send/Recv Stubs.
@@ -59,8 +59,10 @@ where =
5959
tests/
6060
*.py
6161
include =
62+
exceptions
6263
hear
6364
recv
65+
send
6466
skt
6567
__main__
6668
exclude =

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,17 @@
2323
2424
Testcase 0: Just set up test fixtures by importing multicast.
2525
26+
>>> __package__ is not None
27+
True
28+
>>>
29+
2630
>>> import multicast
2731
>>>
2832
>>> multicast.__package__ is not None
2933
True
3034
>>>
3135
36+
3237
"""
3338

3439
try:
@@ -48,6 +53,15 @@
4853
raise NotImplementedError("""[CWE-440] Not Implemented.""") from err
4954

5055

56+
__package__ = """setup""" # skipcq: PYL-W0622
57+
58+
59+
__module__ = """setup""" # skipcq: PYL-W0622
60+
61+
62+
__name__ = """setup""" # skipcq: PYL-W0622
63+
64+
5165
def readFile(filename):
5266
"""Will attempt to read the file at with the given filename or path.
5367

0 commit comments

Comments
 (0)