Skip to content

Commit

Permalink
explicitly set zfpy language_level
Browse files Browse the repository at this point in the history
  • Loading branch information
GarrettDMorrison committed Dec 12, 2023
1 parent 81622f4 commit 269f467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
)

0 comments on commit 269f467

Please sign in to comment.