Skip to content

Commit

Permalink
WinPython 2023-01 post1
Browse files Browse the repository at this point in the history
fix a oneliner preventing the control panel to start
  • Loading branch information
stonebig committed May 27, 2023
1 parent 13ccffa commit a1a191e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions changelogs/md5_sha1.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### WinPython 2023-01 post1 release (May 27th, 2023)

MD5 | SHA-1 | SHA-256 | Binary | Size | blake2b-256
---------------------------------|------------------------------------------|------------------------------------------------------------------|-----------------------------------|--------------------|-----------------------------------------------------------------
a7fe7f5ded089dcf9a201ee78dfeeb6f | 88f5b5a3fa2467173b2fe7c992a6a51ae6bc388b | ec9345932a86101f15b6171fc261b5a7dca1d71095f6e87fe88ec8bdd099b030 | Winpython64-3.10.11.1dot.exe | 27 575 243 Bytes | 63b780813da7f44b1780c844aea23a45492b04e398a191ea96d66bd21903aa4c
5e9b5296702ee5a940934d50b34a1c4f | 162d9493d0a51b4eb0538359fb9bcc4d80784f62 | 7f1bded910ba7815c3e8fc3a5142a9722513967a323cf013d24380a0909090da | Winpython32-3.10.11.1dot.exe | 26 334 232 Bytes | 869728880d39a73f95ae93d3a95a07e57aba03f7671fbe37c029d752027cf3ee
0e88475fabee48a8a6131be13d49b1c0 | c4241cfa5d0a5ffca6fb7a34856379598f8e6439 | 057c85cd548018d2642ff7ee84eca976ccf3e87ce23748ceec8058e5ed7fff15 | Winpython64-3.11.3.1dot.exe | 24 571 543 Bytes | d262eaebdd0e3f2dce678b9766f21acbc35826d820d8cd283035434fefb4d899
00abd0eb20b2a864559fa33e1e102795 | 3eadd097ccf89d7bb1583a0ffbe9d3504379eb19 | e692bff303a55cefdb71bf6086f2989b276074a59b3da569c5adc948e36ae248 | Winpython64-3.10.11.1.exe | 712 268 931 Bytes | b8a5c6bacaca9f3a36e0e70a12d4d4e4ebeef9fea4b5cc2c699e50422bb2e220
f553004fdd1bbe93640f0c6bdd59b2ac | 1ed286c1738b98a679dcd078910415895beca8f2 | 4bc2c603ed1e0c2c075293c0a65e5262556e713958559c7f61b97d5a66a1334d | Winpython64-3.11.3.1.exe | 756 264 155 Bytes | 7c76c4f26f6fe10b5087833ee8a29ae353ab7788a0ad825485dbe58334cf4452


### WinPython 2023-01 release (May 25th, 2023)

MD5 | SHA-1 | SHA-256 | Binary | Size | blake2b-256
Expand Down
2 changes: 1 addition & 1 deletion winpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '6.1.20230518'
__version__ = '6.1.20230527'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'
2 changes: 1 addition & 1 deletion winpython/qthelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def create_action(
action.setCheckable(True)
if icon is not None:
# if is_text_string(icon):
if isinstance(obj, str)
if isinstance(icon, str):
icon = get_icon(icon)
action.setIcon(icon)
if shortcut is not None:
Expand Down

0 comments on commit a1a191e

Please sign in to comment.