Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ of NI-XNET.

**nixnet** can be installed with `pip <http://pypi.python.org/pypi/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 <https://github.com/ni/nixnet-python/tree/main/nixnet_examples>`__.

Expand Down
2 changes: 1 addition & 1 deletion nixnet/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.3.3
2 changes: 1 addition & 1 deletion nixnet/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions nixnet/system/_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down