Skip to content

Commit e746a5e

Browse files
committed
fix PySide6 6.4.0 support
1 parent 9e05b3e commit e746a5e

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.rst

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,24 @@ The format is based on `Keep a Changelog`_, and this project adheres to `Semanti
1515

1616
...
1717

18-
.. _Unreleased: https://github.com/DEMCON/libstored/compare/v1.3.0...HEAD
18+
.. _Unreleased: https://github.com/DEMCON/libstored/compare/v1.3.1...HEAD
19+
20+
21+
22+
`1.3.1`_ - 2022-10-21
23+
---------------------
24+
25+
Fixed
26+
`````
27+
28+
- PySide6 6.4.0 support in changed ``enum`` handling. However, the same issue
29+
exists in matplotlib (issue `#24155`_). To get plotting working again,
30+
matplotlib>=3.6.2 or PySide6<6.4.0 is required.
31+
32+
.. _#24155: https://github.com/matplotlib/matplotlib/issues/24155
33+
.. _1.3.1: https://github.com/DEMCON/libstored/releases/tag/v1.3.1
34+
35+
1936

2037
`1.3.0`_ - 2022-10-20
2138
---------------------

python/libstored/zmq_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def read(self, tryToGetAlias=True):
254254
@Slot()
255255
def asyncRead(self):
256256
event = QEvent(self.AsyncReadEvent)
257-
QCoreApplication.postEvent(self, event, Qt.LowEventPriority - 1)
257+
QCoreApplication.postEvent(self, event, -2)
258258

259259
def _asyncRead(self):
260260
if self._asyncReadPending:

version/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.1-alpha
1+
1.3.1

0 commit comments

Comments
 (0)