Skip to content

Commit 2b7d972

Browse files
committed
Including qt.conf within PyQt5 for inner executables, such as qmlscene.exe and qmlscene_wrapper.bat
1 parent 3946d39 commit 2b7d972

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

PyQt5/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = plugin_path
3232

3333
# Expose versions
34-
version_info = (0, 1, 4) # Version of this release
34+
version_info = (0, 1, 5) # Version of this release
3535
version = "%s.%s.%s" % version_info
3636
__version__ = version
3737

PyQt5/qmlscene_wrapper.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set QT_QPA_PLATFORM_PLUGIN_PATH=%CD%\plugins\platforms
2-
start "" qmlscene.exe
2+
start "" qmlscene.exe %*

PyQt5/qmlviewer_wrapper.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set QT_QPA_PLATFORM_PLUGIN_PATH=%CD%\plugins\platforms
2-
start "" qmlviewer.exe
2+
start "" qmlviewer.exe %*

PyQt5/qt.conf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[Paths]
2+
Prefix = C:/Python27/Lib/site-packages/PyQt5
3+
Binaries = C:/Python27/Lib/site-packages/PyQt5

0 commit comments

Comments
 (0)