diff --git a/README.rst b/README.rst index 252db0f..466e596 100644 --- a/README.rst +++ b/README.rst @@ -35,6 +35,18 @@ License Changelog ========= +1.18.3 (2024-06-25) +------------------- + +Fix +~~~ + +- Move argparse type from 'int' to int. + + In latest version of pytest, the 'int' value as type is + no longer supported, causing issues when topology is + started. + 1.18.2 (2023-06-15) ------------------- diff --git a/lib/topology/__init__.py b/lib/topology/__init__.py index c1fb69b..8506c54 100644 --- a/lib/topology/__init__.py +++ b/lib/topology/__init__.py @@ -21,4 +21,4 @@ __author__ = 'Hewlett Packard Enterprise Development LP' __email__ = 'hpe-networking@lists.hp.com' -__version__ = '1.18.2' +__version__ = '1.18.3'