Skip to content

Commit 4e8cefc

Browse files
committed
Version bump
1 parent 15984b0 commit 4e8cefc

File tree

2 files changed

+3
-2
lines changed

2 files changed

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

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66

77
def get_version():
8-
sys.path.insert(os.path.dirname(__file__))
8+
repo_dir = os.path.dirname(__file__)
9+
sys.path.insert(0, repo_dir)
910
import PyQt5
1011
return PyQt5.__version__
1112

0 commit comments

Comments
 (0)