From b666e64f452eb9e7215839e71c29898473f56c89 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Sat, 8 Aug 2026 11:50:43 +0530 Subject: [PATCH] setup.py: remove deprecated `dry_run` parameter The `dry_run` parameter has been deprecated since setuptools v81.0.0: https://setuptools.pypa.io/en/latest/history.html#v81-0-0 Signed-off-by: Pratham Patel --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 00f52ea1..0395bdec 100644 --- a/setup.py +++ b/setup.py @@ -76,8 +76,7 @@ def run(self): ext_path = self.get_ext_fullpath(ext.name) # Create a symlink to the build directory if in editable mode, otherwise copy link = "sym" if self.editable_mode else None - file_util.copy_file(ext_build_path, ext_path, update=1, link=link, - dry_run=self.dry_run) + file_util.copy_file(ext_build_path, ext_path, update=1, link=link,) def _get_csrc_dir(ext_name: str):