File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -162,10 +162,8 @@ endif()
162162if (CMAKE_BUILD_TYPE STREQUAL "Release" )
163163 if (MSVC )
164164 target_compile_options (lzo_module PRIVATE /O2 )
165- target_compile_options (lzo_modules PRIVATE /O2 )
166165 else ()
167166 target_compile_options (lzo_module PRIVATE -O3 -march=native )
168- target_compile_options (lzo_modules PRIVATE -O3 -march=native )
169167 endif ()
170168endif ()
171169
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ requires-python = ">=3.8"
2424classifiers = [
2525 " Development Status :: 5 - Production/Stable" ,
2626 " Intended Audience :: Developers" ,
27- " License :: OSI Approved :: GNU General Public License v2 (GPLv2)" ,
2827 " Programming Language :: Python :: 3" ,
2928 " Programming Language :: Python :: 3.8" ,
3029 " Programming Language :: Python :: 3.9" ,
Original file line number Diff line number Diff line change 99
1010class CMakeExtension (Extension ):
1111 def __init__ (self , name , sourcedir = "" ):
12- Extension .__init__ (self , name , sources = [])
12+ super () .__init__ (name , sources = [])
1313 self .sourcedir = os .path .abspath (sourcedir )
1414
15-
1615class CMakeBuild (build_ext ):
1716 def build_extension (self , ext ):
1817 extdir = os .path .abspath (os .path .dirname (self .get_ext_fullpath (ext .name )))
You can’t perform that action at this time.
0 commit comments