Skip to content

Commit 978468c

Browse files
committedSep 30, 2014
Fixes #6
1 parent e14b356 commit 978468c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed
 

‎MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include qt.conf

‎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, 7) # Version of this release
34+
version_info = (0, 1, 8) # Version of this release
3535
version = "%s.%s.%s" % version_info
3636
__version__ = version
3737

‎setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ def get_package_data():
2525
relpath = relpath.replace("\\", "/")
2626
package_data['PyQt5'].append(subdir + relpath)
2727

28-
package_data['PyQt5'].extend(["*.exe", "*.dll", "*.pyd", "*.conf"])
28+
package_data['PyQt5'].extend(["*.exe",
29+
"*.dll",
30+
"*.pyd",
31+
"*.conf"])
2932
return package_data
3033

3134

0 commit comments

Comments
 (0)
Please sign in to comment.