changeset 52688:25bb409da058

setup-py: remove unused and deprecated setup argument datafiles
author paugier <pierre.augier@univ-grenoble-alpes.fr>
date Wed, 04 Dec 2024 23:09:32 +0100
parents e5aadff6cb7d
children f5091286b10c
files setup.py
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Mon Dec 30 20:56:19 2024 -0500
+++ b/setup.py	Wed Dec 04 23:09:32 2024 +0100
@@ -1739,8 +1739,6 @@
         packagename = curdir.replace(os.sep, '.')
         packagedata[packagename] = list(filter(ordinarypath, files))
 
-datafiles = []
-
 # distutils expects version to be str/unicode. Converting it to
 # unicode on Python 2 still works because it won't contain any
 # non-ascii bytes and will be implicitly converted back to bytes
@@ -1816,7 +1814,6 @@
     scripts=scripts,
     packages=packages,
     ext_modules=extmodules,
-    data_files=datafiles,
     package_data=packagedata,
     cmdclass=cmdclass,
     distclass=hgdist,