Skip to content

Commit

Permalink
Merge pull request #84 from portugueslab/support-python39
Browse files Browse the repository at this point in the history
Support and test for python 3.9
vilim authored Aug 7, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 350481a + 89e982a commit df21fb6
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ name: stytra_env
channels:
- conda-forge
dependencies:
- python=3.7
- python>=3.7
- pip
- pyqt
- numpy
2 changes: 1 addition & 1 deletion stytra/utilities.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit df21fb6

Please sign in to comment.