From 1f5b5682b6e697fd8bf1a08476f39c546ddae9ed Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Sat, 22 Jul 2023 10:29:09 +0200 Subject: [PATCH] Use a pinned version of Cython for now, as most of the recipes are incompatible with Cython==3.x.x --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5b7166b277..9747c6c43d 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ all: virtualenv $(VIRTUAL_ENV): python3 -m venv $(VIRTUAL_ENV) - $(PIP) install Cython + $(PIP) install Cython==0.29.36 $(PIP) install -e . virtualenv: $(VIRTUAL_ENV)