From a011a427b6c3adaa1a465638ad509d3f99c0fcb7 Mon Sep 17 00:00:00 2001 From: Ioannis Filippidis Date: Tue, 28 Nov 2023 16:12:06 +0200 Subject: [PATCH] MNT: add `cython` to packages installed by `wheel_deps` --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ba98bf55..89ea4a1d 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,11 @@ sdist: clean wheel_deps python -m build --sdist --no-isolation wheel_deps: - pip install --upgrade pip setuptools wheel + pip install --upgrade \ + cython \ + pip \ + setuptools \ + wheel # use to create binary distributions for PyPI wheel: clean wheel_deps