From 97ef503081cbc7d194bfb0ad3e431ca195751f1a Mon Sep 17 00:00:00 2001 From: John Buckenham Date: Mon, 28 Aug 2023 12:16:13 +0200 Subject: [PATCH] Staging for release 0.3.3 --- README.rst | 2 +- nixnet/VERSION | 2 +- nixnet/_utils.py | 2 +- nixnet/system/_collection.py | 6 ++++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index f3516d32..8566990a 100644 --- a/README.rst +++ b/README.rst @@ -48,7 +48,7 @@ of NI-XNET. **nixnet** can be installed with `pip `__:: - $ python -m pip install nixnet~=0.3.2 + $ python -m pip install nixnet~=0.3.3 Now you should be able to move onto the `Examples `__. diff --git a/nixnet/VERSION b/nixnet/VERSION index d15723fb..1c09c74e 100644 --- a/nixnet/VERSION +++ b/nixnet/VERSION @@ -1 +1 @@ -0.3.2 +0.3.3 diff --git a/nixnet/_utils.py b/nixnet/_utils.py index 4ac07694..646d36ef 100644 --- a/nixnet/_utils.py +++ b/nixnet/_utils.py @@ -3,7 +3,7 @@ from __future__ import print_function try: - from collections.abc import Iterable # python 3.3+ + from collections.abc import Iterable # python 3.3+ except ImportError: from collections import Iterable # python 2.7 import typing # NOQA: F401 diff --git a/nixnet/system/_collection.py b/nixnet/system/_collection.py index adb650b7..6857e823 100644 --- a/nixnet/system/_collection.py +++ b/nixnet/system/_collection.py @@ -3,9 +3,11 @@ from __future__ import print_function try: - from collections.abc import Iterable, Sized # python 3.3+ + from collections.abc import Iterable # python 3.3+ + from collections.abc import Sized except ImportError: - from collections import Iterable, Sized # python 2.7 + from collections import Iterable # python 2.7 + from collections import Sized import typing # NOQA: F401 from nixnet import _cprops