File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,9 @@ repos:
128
128
- id : rstcheck
129
129
args : ["--report-level=warning"]
130
130
files : ^(doc/(.*/)*.*\.rst)
131
- additional_dependencies : [Sphinx==7.4.3]
131
+ # TODO remove pydantic once 2.12.0 is released
132
+ additional_dependencies :
133
+ ["Sphinx==7.4.3", "pydantic>=2.12.0a1;python_version>='3.14'"]
132
134
- repo : https://github.com/pre-commit/mirrors-mypy
133
135
rev : v1.17.1
134
136
hooks :
Original file line number Diff line number Diff line change 11
11
import argparse
12
12
import os
13
13
import sys
14
- from concurrent .futures import ProcessPoolExecutor
15
- from concurrent .futures .process import BrokenProcessPool
14
+ from concurrent .futures .process import BrokenProcessPool , ProcessPoolExecutor
16
15
from pathlib import Path
17
16
from pickle import PickleError
18
17
from typing import TYPE_CHECKING
You can’t perform that action at this time.
0 commit comments