From 269f4678404fe61de7cb6ea04a5c6c277fa17b35 Mon Sep 17 00:00:00 2001 From: GarrettDMorrison Date: Tue, 12 Dec 2023 12:16:30 -0800 Subject: [PATCH] explicitly set zfpy language_level --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9e4c39119..668e52392 100644 --- a/setup.py +++ b/setup.py @@ -11,5 +11,5 @@ long_description="zfp is a compressed format for representing multidimensional floating-point and integer arrays. zfp provides compressed-array classes that support high throughput read and write random access to individual array elements. zfp also supports serial and parallel compression of whole arrays using both lossless and lossy compression with error tolerances. zfp is primarily written in C and C++ but also includes Python and Fortran bindings.", ext_modules=[Extension("zfpy", ["build/python/zfpy.c"], include_dirs=["include", np.get_include()], - libraries=["zfp"], library_dirs=["build/lib64", "build/lib/Release"])] + libraries=["zfp"], library_dirs=["build/lib64", "build/lib/Release"]), language_level = "3"] )