Skip to content

Commit

Permalink
Tests no longer work with Python 3.10 (fixes: #1175)
Browse files Browse the repository at this point in the history
  • Loading branch information
Germar committed Jul 5, 2021
1 parent 0b42b76 commit e1ae23d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
Back In Time

Version 1.3.2
* Fix bug: Tests no longer work with Python 3.10 (https://github.com/bit-team/backintime/issues/1175)

Version 1.3.1
* bump version, forgot to push branch to Github before releasing
* bump version, forgot to push branch to Github before releasing

Version 1.3.0
* Merge PR: Fix FileNotFoundError exception in mount.mounted, Thanks tatokis (https://github.com/bit-team/backintime/pull/1157)
Expand Down
7 changes: 5 additions & 2 deletions common/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@
import errno
import gzip
import tempfile
import collections
try:
from collections.abc import MutableSet
except ImportError:
from collections import MutableSet
import hashlib
import ipaddress
import atexit
Expand Down Expand Up @@ -1802,7 +1805,7 @@ def reset(self, path):
self.history = [path,]
self.index = 0

class OrderedSet(collections.MutableSet):
class OrderedSet(MutableSet):
"""
OrderedSet from Python recipe
http://code.activestate.com/recipes/576694/
Expand Down

0 comments on commit e1ae23d

Please sign in to comment.