Skip to content
This repository was archived by the owner on Dec 23, 2025. It is now read-only.

Commit d3c8179

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9219649 commit d3c8179

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

idesolver/idesolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def global_error(y1: np.ndarray, y2: np.ndarray) -> float:
5858

5959

6060
def coerce_to_array(
61-
to_coerce: Union[float, np.float64, complex, np.complex128, np.ndarray, list]
61+
to_coerce: Union[float, np.float64, complex, np.complex128, np.ndarray, list],
6262
) -> np.ndarray:
6363
"""Coerce `to_coerce` into a numpy array"""
6464
return np.array(to_coerce, ndmin=1, copy=False)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ install_requires =
2727
numpy>=1.18
2828
scipy>=1.4
2929
importlib-metadata>=1.0;python_version < "3.8"
30-
python_requires = >=3.8
30+
python_requires = >=3.9
3131

3232
[options.extras_require]
3333
docs =

0 commit comments

Comments
 (0)