Skip to content

Commit 79426e2

Browse files
committed
deps(mpt-api-client): upgrade version used
1 parent 271a5e6 commit 79426e2

File tree

2 files changed

+540
-540
lines changed

2 files changed

+540
-540
lines changed

pyproject.toml

Lines changed: 65 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ description = "Migration tool for extensions"
55
authors = [{ name = "SoftwareOne AG" }]
66
requires-python = ">=3.12,<4"
77
readme = "docs/PROJECT_DESCRIPTION.md"
8-
license = {text = "Apache-2.0 license"}
8+
license = { text = "Apache-2.0 license" }
99

1010
dependencies = [
11-
"mpt-api-client==5.1.*",
11+
"mpt-api-client==5.2.*",
1212
"pyairtable==3.3.*",
1313
"typer==0.24.*",
1414
]
@@ -57,11 +57,11 @@ relative_files = true
5757

5858
[tool.coverage.report]
5959
exclude_also = [
60-
"if __name__ == \"__main__\":",
61-
"raise NotImplementedError",
60+
"if __name__ == \"__main__\":",
61+
"raise NotImplementedError",
6262
]
6363
omit = [
64-
"*/__init__.py"
64+
"*/__init__.py"
6565
]
6666

6767
[tool.flake8]
@@ -103,69 +103,69 @@ quote-style = "double"
103103

104104
[tool.ruff.lint]
105105
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
144144
]
145145
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`
167167
]
168-
external = [ "AAA", "WPS" ]
168+
external = ["AAA", "WPS"]
169169

170170
# Plugin configs:
171171
[tool.ruff.lint.flake8-import-conventions]

0 commit comments

Comments
 (0)