File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
5353Now you should be able to move onto the `Examples <https://github.com/ni/nixnet-python/tree/main/nixnet_examples >`__.
5454
Original file line number Diff line number Diff line change 1- 0.3.2
1+ 0.3.3
Original file line number Diff line number Diff line change 33from __future__ import print_function
44
55try :
6- from collections .abc import Iterable # python 3.3+
6+ from collections .abc import Iterable # python 3.3+
77except ImportError :
88 from collections import Iterable # python 2.7
99import typing # NOQA: F401
Original file line number Diff line number Diff line change 33from __future__ import print_function
44
55try :
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
78except ImportError :
8- from collections import Iterable , Sized # python 2.7
9+ from collections import Iterable # python 2.7
10+ from collections import Sized
911import typing # NOQA: F401
1012
1113from nixnet import _cprops
You can’t perform that action at this time.
0 commit comments