We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d66512 commit fafd888Copy full SHA for fafd888
.ci_support/check.py
@@ -10,7 +10,7 @@
10
for el in sub_lst:
11
lst.append(el)
12
13
- data["project"]["dependencies"] += list(set(lst))
+ data["project"]["dependencies"] += [el for el in set(lst) if not el.startswith("pyauthenticator")]
14
15
with open("pyproject.toml", "w") as f:
16
f.writelines(tomlkit.dumps(data))
0 commit comments