Skip to content

Commit fafd888

Browse files
committed
fix
1 parent 8d66512 commit fafd888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci_support/check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
for el in sub_lst:
1111
lst.append(el)
1212

13-
data["project"]["dependencies"] += list(set(lst))
13+
data["project"]["dependencies"] += [el for el in set(lst) if not el.startswith("pyauthenticator")]
1414

1515
with open("pyproject.toml", "w") as f:
1616
f.writelines(tomlkit.dumps(data))

0 commit comments

Comments
 (0)