Skip to content
This repository was archived by the owner on Dec 23, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -28,23 +28,23 @@ repos:
rev: v1.5.5
hooks:
- id: remove-crlf
- repo: https://github.com/psf/black
rev: 24.4.2
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
hooks:
- id: black
- repo: https://github.com/asottile/blacken-docs
rev: 1.16.0
rev: 1.20.0
hooks:
- id: blacken-docs
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.5.0
rev: v3.2.0
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/asottile/seed-isort-config
rev: v2.2.0
hooks:
- id: seed-isort-config
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
rev: 7.0.0
hooks:
- id: isort
2 changes: 1 addition & 1 deletion idesolver/idesolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def global_error(y1: np.ndarray, y2: np.ndarray) -> float:


def coerce_to_array(
to_coerce: Union[float, np.float64, complex, np.complex128, np.ndarray, list]
to_coerce: Union[float, np.float64, complex, np.complex128, np.ndarray, list],
) -> np.ndarray:
"""Coerce `to_coerce` into a numpy array"""
return np.array(to_coerce, ndmin=1, copy=False)
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Expand All @@ -27,7 +26,7 @@ install_requires =
numpy>=1.18
scipy>=1.4
importlib-metadata>=1.0;python_version < "3.8"
python_requires = >=3.8
python_requires = >=3.10

[options.extras_require]
docs =
Expand Down
Loading