From df15b9a95bccb85bc4ab356f0ab7d743f09be43e Mon Sep 17 00:00:00 2001 From: Johann Christensen Date: Fri, 20 Sep 2024 07:55:48 +0200 Subject: [PATCH] Deactivate mypy on pre-commit.ci Apparently, pre-commit.ci uses Python 3.12 for which numpy 1.24.4 is not natively available. Once we drop 3.8 support, we can upgrade to numpy 2.0.2 and reactivate mypy in CI --- .pre-commit-config.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a0cf78a..0933ac7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,10 @@ # SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR) # # SPDX-License-Identifier: MIT +# CI Settings +ci: + skip: [mypy] # Apparently, mypy on pre-commit.ci uses Python 3.12 for which numpy 1.24.4 is not available + # Here are some commonly used pre-commit hooks. You can find more at: # repos: