Skip to content

Commit

Permalink
changes to support abc import change in python 3.9
Browse files Browse the repository at this point in the history
Bumped version
  • Loading branch information
Ciemaar committed May 30, 2020
1 parent 0e3c382 commit 72b7f6f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions flock/core.py
@@ -1,8 +1,10 @@
import inspect
import warnings
from abc import abstractmethod, ABCMeta
from collections import MutableMapping, Mapping, defaultdict, OrderedDict, MutableSequence, Iterable
from collections import defaultdict, OrderedDict
from copy import copy

import inspect
from abc import abstractmethod, ABCMeta
from collections.abc import MutableMapping, Mapping, MutableSequence, Iterable
from itertools import chain

from flock.util import FlockException
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,3 +1,3 @@
pytest==3.4.0
PyYAML==3.12
wheel
wheel
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@

setup(
name='flock',
version='0.0.10',
version='0.0.11',
packages=['test', 'flock'],
url='http://ciemaar.com/flock',
license='GPL v3',
Expand Down

0 comments on commit 72b7f6f

Please sign in to comment.