You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+65-65Lines changed: 65 additions & 65 deletions
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,10 @@ description = "Migration tool for extensions"
5
5
authors = [{ name = "SoftwareOne AG" }]
6
6
requires-python = ">=3.12,<4"
7
7
readme = "docs/PROJECT_DESCRIPTION.md"
8
-
license = {text = "Apache-2.0 license"}
8
+
license = {text = "Apache-2.0 license"}
9
9
10
10
dependencies = [
11
-
"mpt-api-client==5.1.*",
11
+
"mpt-api-client==5.2.*",
12
12
"pyairtable==3.3.*",
13
13
"typer==0.24.*",
14
14
]
@@ -57,11 +57,11 @@ relative_files = true
57
57
58
58
[tool.coverage.report]
59
59
exclude_also = [
60
-
"if __name__ == \"__main__\":",
61
-
"raise NotImplementedError",
60
+
"if __name__ == \"__main__\":",
61
+
"raise NotImplementedError",
62
62
]
63
63
omit = [
64
-
"*/__init__.py"
64
+
"*/__init__.py"
65
65
]
66
66
67
67
[tool.flake8]
@@ -103,69 +103,69 @@ quote-style = "double"
103
103
104
104
[tool.ruff.lint]
105
105
select = [
106
-
"A",# flake8-builtins
107
-
"B",# flake8-bugbear
108
-
"C4",# flake8-comprehensions
109
-
"C90",# maccabe
110
-
"COM",# flake8-commas
111
-
"D",# pydocstyle
112
-
"DTZ",# flake8-datetimez
113
-
"E",# pycodestyle
114
-
"ERA",# flake8-eradicate
115
-
"EXE",# flake8-executable
116
-
"F",# pyflakes
117
-
"FBT",# flake8-boolean-trap
118
-
"FLY",# pyflint
119
-
"FURB", # refurb
120
-
"G",# flake8-logging-format
121
-
"I",# isort
122
-
"ICN",# flake8-import-conventions
123
-
"ISC",# flake8-implicit-str-concat
124
-
"LOG",# flake8-logging
125
-
"N",# pep8-naming
126
-
"PERF", # perflint
127
-
"PIE",# flake8-pie
128
-
"PL",# pylint
129
-
"PT",# flake8-pytest-style
130
-
"PTH",# flake8-use-pathlib
131
-
"Q",# flake8-quotes
132
-
"RET",# flake8-return
133
-
"RSE",# flake8-raise
134
-
"RUF",# ruff
135
-
"S",# flake8-bandit
136
-
"SIM",# flake8-simpify
137
-
"SLF",# flake8-self
138
-
"SLOT", # flake8-slots
139
-
"T100", # flake8-debugger
140
-
"TRY",# tryceratops
141
-
"UP",# pyupgrade
142
-
"W",# pycodestyle
143
-
"YTT",# flake8-2020
106
+
"A", # flake8-builtins
107
+
"B", # flake8-bugbear
108
+
"C4", # flake8-comprehensions
109
+
"C90", # maccabe
110
+
"COM", # flake8-commas
111
+
"D", # pydocstyle
112
+
"DTZ", # flake8-datetimez
113
+
"E", # pycodestyle
114
+
"ERA", # flake8-eradicate
115
+
"EXE", # flake8-executable
116
+
"F", # pyflakes
117
+
"FBT", # flake8-boolean-trap
118
+
"FLY", # pyflint
119
+
"FURB", # refurb
120
+
"G", # flake8-logging-format
121
+
"I", # isort
122
+
"ICN", # flake8-import-conventions
123
+
"ISC", # flake8-implicit-str-concat
124
+
"LOG", # flake8-logging
125
+
"N", # pep8-naming
126
+
"PERF", # perflint
127
+
"PIE", # flake8-pie
128
+
"PL", # pylint
129
+
"PT", # flake8-pytest-style
130
+
"PTH", # flake8-use-pathlib
131
+
"Q", # flake8-quotes
132
+
"RET", # flake8-return
133
+
"RSE", # flake8-raise
134
+
"RUF", # ruff
135
+
"S", # flake8-bandit
136
+
"SIM", # flake8-simpify
137
+
"SLF", # flake8-self
138
+
"SLOT", # flake8-slots
139
+
"T100", # flake8-debugger
140
+
"TRY", # tryceratops
141
+
"UP", # pyupgrade
142
+
"W", # pycodestyle
143
+
"YTT", # flake8-2020
144
144
]
145
145
ignore = [
146
-
"A005",# allow to shadow stdlib and builtin module names
147
-
"B904",# Within an `except` clause, raise exceptions with `raise ... from err` or `raise ... from None` to distinguish them from errors in exception handling
148
-
"COM812", # trailing comma, conflicts with `ruff format`
149
-
# Different doc rules that we don't really care about:
150
-
"D100",
151
-
"D104",
152
-
"D105", # docstring for magic methods
153
-
"D106",
154
-
"D107",
155
-
"D203",
156
-
"D212",
157
-
"D401",
158
-
"D404",
159
-
"D405",
160
-
"ISC001",# implicit string concat conflicts with `ruff format`
161
-
"ISC003",# prefer explicit string concat over implicit concat
162
-
"PLR09",# we have our own complexity rules
163
-
"PLR2004", # do not report magic numbers
164
-
"PLR6301", # do not require classmethod / staticmethod when self not used
165
-
"PT011", # pytest.raises({exception}) is too broad, set the match parameter or use a more specific exception
166
-
"TRY003",# long exception messages from `tryceratops`
146
+
"A005", # allow to shadow stdlib and builtin module names
147
+
"B904", # Within an `except` clause, raise exceptions with `raise ... from err` or `raise ... from None` to distinguish them from errors in exception handling
148
+
"COM812", # trailing comma, conflicts with `ruff format`
149
+
# Different doc rules that we don't really care about:
150
+
"D100",
151
+
"D104",
152
+
"D105", # docstring for magic methods
153
+
"D106",
154
+
"D107",
155
+
"D203",
156
+
"D212",
157
+
"D401",
158
+
"D404",
159
+
"D405",
160
+
"ISC001", # implicit string concat conflicts with `ruff format`
161
+
"ISC003", # prefer explicit string concat over implicit concat
162
+
"PLR09", # we have our own complexity rules
163
+
"PLR2004", # do not report magic numbers
164
+
"PLR6301", # do not require classmethod / staticmethod when self not used
165
+
"PT011", # pytest.raises({exception}) is too broad, set the match parameter or use a more specific exception
166
+
"TRY003", # long exception messages from `tryceratops`
0 commit comments