Skip to content

Commit 49153a0

Browse files
committed
data_files's second tuple item can probably be any sequence
1 parent 6df1385 commit 49153a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setuptools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def setup(
165165
include_dirs: list[str] | None = None,
166166
extra_path=None,
167167
scripts: list[str] | None = None,
168-
data_files: list[tuple[str, list[str]]] | None = None,
168+
data_files: list[tuple[str, Sequence[str]]] | None = None,
169169
password: str = '',
170170
command_obj: dict[str, _Command] = {},
171171
have_run: dict[str, bool] = {},

0 commit comments

Comments
 (0)