@@ -8,15 +8,15 @@ version = "0.8.0.dev0"
8
8
description = " The FEniCSx Form Compiler"
9
9
readme = " README.md"
10
10
requires-python = " >=3.8.0"
11
- license = {file = " LICENSE" }
11
+ license = { file = " LICENSE" }
12
12
authors = [
13
13
{ email = " fenics-steering-council@googlegroups.com" },
14
14
{ name = " FEniCS Steering Council" },
15
15
]
16
16
dependencies = [
17
17
" numpy>=1.21" ,
18
18
" cffi" ,
19
- " setuptools; python_version >= '3.12'" , # cffi with compilation support requires setuptools
19
+ " setuptools; python_version >= '3.12'" , # cffi with compilation support requires setuptools
20
20
" fenics-basix >= 0.8.0.dev0, <0.9.0" ,
21
21
" fenics-ufl >= 2023.3.0.dev0, <2023.4.0" ,
22
22
]
@@ -59,13 +59,8 @@ packages = [
59
59
[tool .pytest .ini_options ]
60
60
minversion = " 6.0"
61
61
addopts = " -ra"
62
- testpaths = [
63
- " test"
64
- ]
65
- norecursedirs = [
66
- " libs" ,
67
- " docs"
68
- ]
62
+ testpaths = [" test" ]
63
+ norecursedirs = [" libs" , " docs" ]
69
64
log_cli = true
70
65
71
66
[tool .mypy ]
@@ -80,13 +75,7 @@ warn_unused_ignores = false
80
75
show_error_codes = true
81
76
82
77
[[tool .mypy .overrides ]]
83
- module = [
84
- ' basix' ,
85
- ' cffi' ,
86
- ' numba.*' ,
87
- ' pygraphviz' ,
88
- ' ufl.*'
89
- ]
78
+ module = [' basix' , ' cffi' , ' numba.*' , ' pygraphviz' , ' ufl.*' ]
90
79
ignore_missing_imports = true
91
80
92
81
[tool .ruff ]
@@ -114,7 +103,7 @@ select = [
114
103
" FLY" , # use f-string not static joins
115
104
" LOG" , # https://docs.astral.sh/ruff/rules/#flake8-logging-log
116
105
# "ISC", # https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc
117
- # "B", https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
106
+ # "B", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
118
107
# "A", # https://docs.astral.sh/ruff/rules/#flake8-builtins-a
119
108
]
120
109
ignore = [" RUF005" , " RUF012" , " RUF015" ]
@@ -127,4 +116,3 @@ ignore = ["RUF005", "RUF012", "RUF015"]
127
116
128
117
[tool .ruff .lint .pydocstyle ]
129
118
convention = " google"
130
-
0 commit comments