1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Upgrade to latest pytest

- Currently some incompatibility in the hscommon tests, commented out
the ones with issues temporarily
- Also updated some deprecation warnings, still more to do
This commit is contained in:
2020-06-25 23:26:48 -05:00
parent 7658cdafbc
commit e05c72ad8c
13 changed files with 73 additions and 59 deletions

View File

@@ -6,7 +6,7 @@
# which should be included with this package. The terms are also available at
# http://www.gnu.org/licenses/gpl-3.0.html
from collections import Sequence, MutableSequence
from collections.abc import Sequence, MutableSequence
from .base import GUIObject

View File

@@ -6,7 +6,8 @@
# which should be included with this package. The terms are also available at
# http://www.gnu.org/licenses/gpl-3.0.html
from collections import MutableSequence, namedtuple
from collections.abc import MutableSequence
from collections import namedtuple
from .base import GUIObject
from .selectable_list import Selectable

View File

@@ -4,7 +4,7 @@
# which should be included with this package. The terms are also available at
# http://www.gnu.org/licenses/gpl-3.0.html
from collections import MutableSequence
from collections.abc import MutableSequence
from .base import GUIObject