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

Commit ea65a8b

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

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ license_files = LICENSE
1414
classifiers =
1515
Development Status :: 5 - Production/Stable
1616
Intended Audience :: Science/Research
17-
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
1817
Operating System :: OS Independent
1918
Programming Language :: Python :: 3
2019
Programming Language :: Python :: 3 :: Only
@@ -27,7 +26,7 @@ install_requires =
2726
numpy>=1.18
2827
scipy>=1.4
2928
importlib-metadata>=1.0;python_version < "3.8"
30-
python_requires = >=3.8
29+
python_requires = >=3.10
3130

3231
[options.extras_require]
3332
docs =

0 commit comments

Comments
 (0)