Skip to content

Commit

Permalink
Upgrade actions and code to python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalEgn committed Jul 24, 2024
1 parent f8eb6ea commit 8ccd7d6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion inspire_json_merger/postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@

import itertools
import json
from collections import Iterable

try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable

from json_merger.conflict import Conflict
from pyrsistent import thaw
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@
'decorator~=4.0,>=4.1.2',
'flake8-future-import~=0.0,>=0.4.3',
'mock~=2.0,>=2.0.0',
'pytest-cov~=2.0,>=2.6.1',
'pytest~=3.0,>=3.6.0',
'pytest-cov~=2.0,>=2.5.1',
'pytest~=4.0,>=4.6.0;python_version <= "2.7"',
'pytest~=8.0,>=8.0.2;python_version >= "3.6"',
]

extras_require = {
Expand Down

0 comments on commit 8ccd7d6

Please sign in to comment.