Skip to content

Commit 97ef503

Browse files
author
John Buckenham
committed
Staging for release 0.3.3
1 parent 8fe225b commit 97ef503

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ of NI-XNET.
4848

4949
**nixnet** can be installed with `pip <http://pypi.python.org/pypi/pip>`__::
5050

51-
$ python -m pip install nixnet~=0.3.2
51+
$ python -m pip install nixnet~=0.3.3
5252

5353
Now you should be able to move onto the `Examples <https://github.com/ni/nixnet-python/tree/main/nixnet_examples>`__.
5454

nixnet/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.2
1+
0.3.3

nixnet/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import print_function
44

55
try:
6-
from collections.abc import Iterable # python 3.3+
6+
from collections.abc import Iterable # python 3.3+
77
except ImportError:
88
from collections import Iterable # python 2.7
99
import typing # NOQA: F401

nixnet/system/_collection.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
from __future__ import print_function
44

55
try:
6-
from collections.abc import Iterable, Sized # python 3.3+
6+
from collections.abc import Iterable # python 3.3+
7+
from collections.abc import Sized
78
except ImportError:
8-
from collections import Iterable, Sized # python 2.7
9+
from collections import Iterable # python 2.7
10+
from collections import Sized
911
import typing # NOQA: F401
1012

1113
from nixnet import _cprops

0 commit comments

Comments
 (0)