Skip to content

Commit e3fbaf3

Browse files
committed
fixed typo
1 parent 147de0e commit e3fbaf3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/wheel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
env:
99
MODULE: tmEventSetup
10-
UTM_VERSION: 0.12.0
10+
UTM_VERSION: 0.13.0
1111
strategy:
1212
matrix:
1313
python-version: ["3.11"]

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)