Skip to content

Commit

Permalink
Including qt.conf within PyQt5 for inner executables, such as qmlscen…
Browse files Browse the repository at this point in the history
…e.exe and qmlscene_wrapper.bat
  • Loading branch information
mottosso committed Sep 29, 2014
1 parent 3946d39 commit 2b7d972
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PyQt5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = plugin_path

# Expose versions
version_info = (0, 1, 4) # Version of this release
version_info = (0, 1, 5) # Version of this release
version = "%s.%s.%s" % version_info
__version__ = version

Expand Down
2 changes: 1 addition & 1 deletion PyQt5/qmlscene_wrapper.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
set QT_QPA_PLATFORM_PLUGIN_PATH=%CD%\plugins\platforms
start "" qmlscene.exe
start "" qmlscene.exe %*
2 changes: 1 addition & 1 deletion PyQt5/qmlviewer_wrapper.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
set QT_QPA_PLATFORM_PLUGIN_PATH=%CD%\plugins\platforms
start "" qmlviewer.exe
start "" qmlviewer.exe %*
3 changes: 3 additions & 0 deletions PyQt5/qt.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[Paths]
Prefix = C:/Python27/Lib/site-packages/PyQt5
Binaries = C:/Python27/Lib/site-packages/PyQt5

0 comments on commit 2b7d972

Please sign in to comment.