Skip to content

Commit 51636ce

Browse files
Merge pull request #1092 from Geode-solutions/fix_wheel_name
Fix_wheel_name
2 parents 1a52d46 + 2f93c41 commit 51636ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmake/PythonTargets.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ print(name + version + '-' + name + version + '-' + platform)"
111111
OUTPUT_VARIABLE wheel_sufix
112112
OUTPUT_STRIP_TRAILING_WHITESPACE
113113
)
114-
string(REGEX REPLACE "-" "_" wheel_name ${GEODE_WHEEL_NAME})
114+
string(TOLOWER ${GEODE_WHEEL_NAME} wheel_name)
115+
string(REGEX REPLACE "-" "_" wheel_name ${wheel_name})
115116
set(wheel_file "${wheel_output_path}/dist/${wheel_name}-${WHEEL_VERSION}-${wheel_sufix}.whl")
116117
message(STATUS "Wheel file: ${wheel_file}")
117118
if(${GEODE_WHEEL_SUPERBUILD})

0 commit comments

Comments
 (0)