Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalEgn committed Jul 17, 2024
1 parent 1dcc124 commit 33cd8cf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test-python-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
${{ matrix.python }} get-pip.py
${{ matrix.python }} -m ${{ matrix.pip }} install --user --upgrade pip
${{ matrix.python }} -m ${{ matrix.pip }} --no-cache-dir install --user setuptools wheel "urllib3==1.25.11"
${{ matrix.python }} -m ${{ matrix.pip }} --no-cache-dir install --user -e .[tests,elasticsearch5]
${{ matrix.python }} -m ${{ matrix.pip }} --no-cache-dir install git+https://github.com/inspirehep/dictdiffer.git#egg=dictdiffer
${{ matrix.python }} -m ${{ matrix.pip }} --no-cache-dir install --user -e .[tests]
- name: Show python dependencies
run: |
Expand Down
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 33cd8cf

Please sign in to comment.