We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a52d46 + 2f93c41 commit 51636ceCopy full SHA for 51636ce
cmake/PythonTargets.cmake
@@ -111,7 +111,8 @@ print(name + version + '-' + name + version + '-' + platform)"
111
OUTPUT_VARIABLE wheel_sufix
112
OUTPUT_STRIP_TRAILING_WHITESPACE
113
)
114
- string(REGEX REPLACE "-" "_" wheel_name ${GEODE_WHEEL_NAME})
+ string(TOLOWER ${GEODE_WHEEL_NAME} wheel_name)
115
+ string(REGEX REPLACE "-" "_" wheel_name ${wheel_name})
116
set(wheel_file "${wheel_output_path}/dist/${wheel_name}-${WHEEL_VERSION}-${wheel_sufix}.whl")
117
message(STATUS "Wheel file: ${wheel_file}")
118
if(${GEODE_WHEEL_SUPERBUILD})
0 commit comments