Skip to content

Commit 09373d4

Browse files
authored
Merge pull request #89 from Dudi119/Development
An update to python distutil file.
2 parents 545e858 + 3e3837f commit 09373d4

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ def run(self):
1313
if not isinstance(ext, CMakeExtension):
1414
raise TypeError('ext type {0} mismatch intended CMakeExtension'.format(type(ext)))
1515
self.build_cmake(ext)
16-
super().run()
1716

1817
def build_cmake(self, ext):
1918
build_temp = pathlib.Path(self.build_temp)
@@ -43,7 +42,7 @@ def build_cmake(self, ext):
4342

4443
setup(
4544
name='cppkin',
46-
version='1.1.1',
45+
version='1.1.2',
4746
description='zipkin tracing library',
4847
url='https://github.com/Dudi119/cppKin',
4948
author='David (Dudi) Likvornik',
@@ -56,7 +55,6 @@ def build_cmake(self, ext):
5655
],
5756
keywords='zipkin instrumentation tracing',
5857
packages=['cppkin'],
59-
package_files={'cppkin': ['_cppkin.so']},
6058
ext_modules=[CMakeExtension('cppKin')],
6159
include_package_data=True,
6260
cmdclass={

0 commit comments

Comments
 (0)