File tree 5 files changed +17
-6
lines changed
5 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
1
+ * text =auto
2
+
3
+ * .py diff =python
4
+ * .md diff =markdown
5
+
6
+ * .svg - diff
Original file line number Diff line number Diff line change 2
2
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
3
version : 2
4
4
5
- mkdocs :
6
- configuration : mkdocs.yml
5
+ build :
6
+ os : ubuntu-22.04
7
+ tools :
8
+ python : " 3.11"
7
9
8
10
python :
9
- version : 3.8
10
11
install :
11
12
- method : pip
12
13
path : .
13
14
extra_requirements :
14
15
- docs
16
+
17
+ mkdocs :
18
+ configuration : mkdocs.yml
Original file line number Diff line number Diff line change 3
3
import sys
4
4
5
5
if sys .version_info >= (3 , 11 ):
6
- from tomllib import load # noqa: TID251
6
+ from tomllib import load
7
7
else :
8
- from tomli import load # noqa: TID251
8
+ from tomli import load
9
9
10
10
__all__ = ("load" ,)
Original file line number Diff line number Diff line change 5
5
if sys .version_info < (3 , 11 ):
6
6
from typing_extensions import NotRequired , assert_never
7
7
else :
8
- from typing import NotRequired , assert_never # noqa: TID251
8
+ from typing import NotRequired , assert_never
9
9
10
10
__all__ = (
11
11
"assert_never" ,
Original file line number Diff line number Diff line change @@ -161,3 +161,4 @@ flake8-unused-arguments.ignore-variadic-names = true
161
161
162
162
[tool .ruff .per-file-ignores ]
163
163
"unit_test/*" = [" PLC1901" ]
164
+ "cibuildwheel/_compat/**.py" = [" TID251" ]
You can’t perform that action at this time.
0 commit comments