Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/pyqt/gen_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def generate_sip_for_class__1(header_content, filename=""):
# --- Properties ---
# Q_PROPERTY_CREATE_Q_H(type, Name)
# Assumes getter: Name() or isName() for bool, Setter: setName(type)
for pt in ("Q_PROPERTY_CREATE", "Q_PROPERTY_CREATE_Q_H"):
for pt in ("Q_PROPERTY_CREATE", "Q_PROPERTY_CREATE_Q_H", "Q_PROPERTY_REF_CREATE_Q_H"):
prop_pattern = re.compile(rf"{pt}\((.*?),\s*(\w+)\)")
has_public_section_for_props = False # To add "public:" if props are first

Expand Down
2 changes: 1 addition & 1 deletion scripts/wheel/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
bit = sys.argv[-1]
sys.argv.pop(-1)

version="0.11.1"
version="0.11.2"

req = "PySide6"

Expand Down
Loading