Skip to content

Commit

Permalink
Support and test for python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
vilim committed Aug 7, 2022
1 parent 350481a commit 470ffc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7"]
python-version: ["3.7", "3.9"]
steps:
- uses: actions/checkout@v2
#setup miniconda
Expand Down
2 changes: 1 addition & 1 deletion stytra/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def recursive_update(d, u):
:return:
"""
for k, v in u.items():
if isinstance(v, collections.Mapping):
if isinstance(v, collections.abc.Mapping):
d[k] = recursive_update(d.get(k, {}), v)
else:
d[k] = v
Expand Down

0 comments on commit 470ffc2

Please sign in to comment.