From 60f025465f1e52b7cda25d4ffe40b5f9a3eea771 Mon Sep 17 00:00:00 2001 From: Joseph Weston <joseph@weston.cloud> Date: Wed, 18 Jul 2018 13:12:19 +0200 Subject: [PATCH] bump required Cython version Kwant no longer builds with Cython 0.22, and our oldest supported operating systems ship with at least 0.24.3 as of now. Closes #204 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e592bf59..6dc63862 100755 --- a/setup.py +++ b/setup.py @@ -167,7 +167,7 @@ def init_cython(): global cythonize, cython_help cython_option = '--cython' - required_cython_version = (0, 22) + required_cython_version = (0, 24) try: sys.argv.remove(cython_option) cythonize = True -- GitLab