From e5db9de99b6e24b1e5941bf763259db586fdbb55 Mon Sep 17 00:00:00 2001 From: Thorsten Liebig Date: Sat, 16 Dec 2023 11:05:02 +0100 Subject: [PATCH] python: fix language level setup, #130 Signed-off-by: Thorsten Liebig --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index e32c2ca..6e72500 100644 --- a/python/setup.py +++ b/python/setup.py @@ -55,5 +55,5 @@ setup( 'h5py>=3.10.0', # BSD 3-Clause (https://github.com/h5py/h5py/blob/master/LICENSE) 'numpy>=1.26.2', # BSD 3-Clause (https://github.com/numpy/numpy/blob/main/LICENSE.txt) ], - ext_modules = cythonize(extensions, language_level = "3") + ext_modules = cythonize(extensions, language_level = 3) )