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
  • Loading branch information
vilim authored Aug 7, 2022
2 parents 350481a + 89e982a commit df21fb6
Show file tree
Hide file tree
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
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 environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: stytra_env
channels:
- conda-forge
dependencies:
- python=3.7
- python>=3.7
- pip
- pyqt
- numpy
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 df21fb6

Please sign in to comment.