From 507747fed9afe5020b5b3c318dc5d38a6d6066ec Mon Sep 17 00:00:00 2001 From: Shyue Ping Ong Date: Wed, 16 Nov 2022 12:18:20 -0800 Subject: [PATCH] Remove cython req from pyproject. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2e7d3e..8e5ccc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,8 +2,7 @@ requires = [ # pin NumPy version used in the build "oldest-supported-numpy", - "setuptools>=43.0.0", - "Cython>=0.29.23" + "setuptools>=43.0.0" ] build-backend = "setuptools.build_meta"