File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
src/cosmology/api/_array_api Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ build.targets.wheel.packages = ["src/cosmology"]
9191version.source = " vcs"
9292
9393[tool .mypy ]
94- python_version = 3.9
94+ python_version = 3.10
9595
9696 namespace_packages = true
9797 explicit_package_bases = true
@@ -142,7 +142,7 @@ filterwarnings = [
142142
143143
144144[tool .ruff ]
145- target-version = " py39 "
145+ target-version = " py310 "
146146line-length = 88
147147
148148[tool .ruff .lint ]
Original file line number Diff line number Diff line change 22
33from typing import TYPE_CHECKING , Protocol , runtime_checkable
44
5- from typing_extensions import Self
6-
75if TYPE_CHECKING :
86 # STDLIB
9- from types import EllipsisType # type: ignore[attr-defined]
7+ from types import EllipsisType
8+ from typing import Self
109
1110 # LOCAL
1211 from .dtype import DTypeConformant
You can’t perform that action at this time.
0 commit comments