From 8eb4bf5b824da62bb1430c47e9ebb018d96637c9 Mon Sep 17 00:00:00 2001 From: dawg Date: Tue, 25 Jun 2024 10:47:44 +0200 Subject: [PATCH] require cython to compile extension - generated c files are outdated due to [GH-101291](https://github.com/python/cpython/pull/101292) --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..bc2be673 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["setuptools", "wheel", "Cython"]