Skip to content

Commit 0f7a428

Browse files
Bug fixes
The wheels created by `pyqt-qt-wheel` now have lower case names. Resolves #31
1 parent 0817c35 commit 0f7a428

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyqtbuild/bundle/qt_wheel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: BSD-2-Clause
22

3-
# Copyright (c) 2024 Phil Thompson <[email protected]>
3+
# Copyright (c) 2025 Phil Thompson <[email protected]>
44

55

66
import os
@@ -109,7 +109,7 @@ def qt_wheel(package, qt_dir, build_tag, suffix, msvc_runtime, openssl,
109109
package_requires = ''
110110

111111
# Construct the name of the wheel.
112-
name_parts = [package_full_name.replace('-', '_')]
112+
name_parts = [package_full_name.replace('-', '_').lower()]
113113
name_parts.append(version_str)
114114

115115
distinfo_dir = '-'.join(name_parts) + '.dist-info'

0 commit comments

Comments
 (0)
close