Skip to content

Commit 35e4064

Browse files
committed
Getting closer.
1 parent 23389f2 commit 35e4064

3 files changed

Lines changed: 1 addition & 5 deletions

File tree

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,8 @@ endif()
162162
if(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()
170168
endif()
171169

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ requires-python = ">=3.8"
2424
classifiers = [
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",

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99

1010
class 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-
1615
class CMakeBuild(build_ext):
1716
def build_extension(self, ext):
1817
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))

0 commit comments

Comments
 (0)