Skip to content

Commit 0e3b14a

Browse files
committed
fix setup.py
1 parent da9b4fa commit 0e3b14a

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
99

1010
set(TFLOGGER_VERSION_MAJOR 1)
1111
set(TFLOGGER_VERSION_MINOR 0)
12-
set(TFLOGGER_VERSION_PATCH 0)
12+
set(TFLOGGER_VERSION_PATCH 1)
1313
set(TFLOGGER_VERSION "${TFLOGGER_VERSION_MAJOR}.${TFLOGGER_VERSION_MINOR}.${TFLOGGER_VERSION_PATCH}")
1414

1515
set(TFLOGGER_SOVERSION_MAJOR 1)

setup.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,12 @@
88
from setuptools.command.build_ext import build_ext
99
from distutils.version import LooseVersion
1010
from distutils import dir_util, file_util
11-
from distutils.command.sdist import sdist
1211

1312

1413
class CMakeExtension(Extension):
1514
def __init__(self, name, sourcedir=''):
1615
Extension.__init__(self, name, sources=[])
1716
self.sourcedir = os.path.abspath(sourcedir)
18-
19-
class (sdist):
20-
def __init__():
21-
22-
self.template =
2317
class CMakeBuild(build_ext):
2418
def run(self):
2519
try:
@@ -69,7 +63,7 @@ def build_extension(self, ext):
6963

7064
setup(
7165
name='tflogger',
72-
version='1.0.0',
66+
version='1.0.1',
7367
author='Viktor Gal',
7468
author_email='viktor.gal@maeth.com',
7569
url='https://github.com/shogun-toolbox/tflogger',

0 commit comments

Comments
 (0)