Skip to content

Commit 147de0e

Browse files
committed
removed assert statement
1 parent df1eff3 commit 147de0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ def copy_files(sources, dest):
3333
for src in sources:
3434
shutil.copy(src, os.path.join(dest, os.path.basename(src)))
3535

36-
with open(os.path.join(UTM_ROOT, PACKAGE_NAME, 'include', 'utm', PACKAGE_NAME, 'version.h')) as f:
37-
assert UTM_VERSION == load_version(f)
36+
#with open(os.path.join(UTM_ROOT, PACKAGE_NAME, 'include', 'utm', PACKAGE_NAME, 'version.h')) as f:
37+
#assert UTM_VERSION == load_version(f)
3838

3939
class BuildPyCommand(setuptools.command.build_py.build_py):
4040
"""Custom build command."""

0 commit comments

Comments
 (0)