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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ python:

install:
- python -m pip install --upgrade pip
- pip install -U importlib-metadata
- pip install --upgrade setuptools
- pip install -U tox-travis
- pip install -U coveralls
Expand Down
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 # python 3.3+
except ImportError:
from collections import Iterable, Sized # python 2.7
from collections import Iterable # python 2.7
from collections import Sized # python 2.7
import typing # NOQA: F401

from nixnet import _cprops
Expand Down