python: fix language level setup, #130

Signed-off-by: Thorsten Liebig <Thorsten.Liebig@gmx.de>
pull/134/head
Thorsten Liebig 2023-12-16 11:05:02 +01:00
parent a87a75efc3
commit e5db9de99b
1 changed files with 1 additions and 1 deletions

View File

@ -55,5 +55,5 @@ setup(
'h5py>=3.10.0', # BSD 3-Clause (https://github.com/h5py/h5py/blob/master/LICENSE) '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) '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)
) )