From 16e398b640b13446c8deed6df39610031352c913 Mon Sep 17 00:00:00 2001 From: Thomas VINCENT Date: Thu, 7 Sep 2023 10:53:30 +0200 Subject: [PATCH] Add wheel dependency --- package/debian11/control | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package/debian11/control b/package/debian11/control index afb84593..c053f17f 100644 --- a/package/debian11/control +++ b/package/debian11/control @@ -7,7 +7,8 @@ Build-Depends: debhelper-compat (= 12), libgomp1, python3-all-dev, python3-h5py, - python3-setuptools + python3-setuptools, + python3-wheel Standards-Version: 4.1.3 Homepage: https://github.com/silx-kit/hdf5plugin diff --git a/setup.py b/setup.py index 48dfcadd..cbbc336c 100644 --- a/setup.py +++ b/setup.py @@ -1351,7 +1351,7 @@ def make_distribution(self): package_dir={'': 'src'}, ext_modules=extensions, install_requires=['h5py'], - setup_requires=['setuptools'], + setup_requires=['setuptools', 'wheel'], extras_require={'dev': ['sphinx', 'sphinx_rtd_theme']}, cmdclass=cmdclass, libraries=libraries,