File tree Expand file tree Collapse file tree 9 files changed +7
-10
lines changed Expand file tree Collapse file tree 9 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,3 @@ multiprocess
8
8
click
9
9
asciitree
10
10
pyyaml
11
- simplejson
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ dependencies = [
48
48
" pyfaidx" ,
49
49
" asciitree" ,
50
50
" pyyaml" ,
51
- " simplejson" ,
52
51
]
53
52
54
53
[project .optional-dependencies ]
Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
+ import json
3
4
import os
4
5
5
6
import h5py
6
7
import numpy as np
7
8
import pandas as pd
8
- import simplejson as json
9
9
from pandas .api .types import is_integer_dtype
10
10
from scipy .sparse import coo_matrix
11
11
Original file line number Diff line number Diff line change
1
+ import json
1
2
import sys
2
3
3
4
import click
4
5
import h5py
5
6
import numpy as np
6
7
import pandas as pd
7
- import simplejson as json
8
8
from cytoolz import compose
9
9
from multiprocess import Pool
10
10
Original file line number Diff line number Diff line change
1
+ import json
1
2
import sys
2
3
3
4
import click
4
- import simplejson as json
5
5
6
6
from ..api import Cooler
7
7
from ..util import attrs_to_jsonable
Original file line number Diff line number Diff line change
1
+ import json
1
2
import sys
2
3
3
4
import click
4
5
import numpy as np
5
6
import pandas as pd
6
- import simplejson as json
7
7
8
8
from ..create import (
9
9
BIN_DTYPE ,
Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
+ import json
3
4
import os
4
5
import os .path as op
5
6
import posixpath
12
13
import h5py
13
14
import numpy as np
14
15
import pandas as pd
15
- import simplejson as json
16
16
17
17
from .._logging import get_logger
18
18
from .._typing import Tabular
Original file line number Diff line number Diff line change 3
3
import os
4
4
5
5
# from textwrap import dedent
6
+ import json
6
7
import warnings
7
8
from collections .abc import Callable
8
9
from datetime import datetime
9
10
from numbers import Number
10
11
from typing import Any , Literal
11
12
12
- import simplejson as json
13
-
14
13
try :
15
14
from simplejson import JSONDecodeError
16
15
except ImportError :
Original file line number Diff line number Diff line change 1
1
# from io import StringIO
2
+ import json
2
3
import os .path as op
3
4
import tempfile
4
5
from glob import glob
5
6
6
7
import numpy as np
7
8
import pandas as pd
8
9
import pytest
9
- import simplejson as json
10
10
11
11
# from _common import cooler_cmp
12
12
from click .testing import CliRunner
You can’t perform that action at this time.
0 commit comments