|
1 | 1 | # Specify the build system.
|
2 | 2 | [build-system]
|
3 |
| -requires = ["sip >=6,<7", "PyQt-builder >=1.17,<2", "PyQt6==6.5.3"] |
| 3 | +requires = ["sip >=6,<7", "PyQt-builder >=1.17,<2", "PyQt6==6.5.3", "ruff"] |
4 | 4 | build-backend = "sipbuild.api"
|
5 | 5 |
|
6 | 6 | # Specify the PEP 566 metadata for the project.
|
7 | 7 | [project]
|
8 | 8 | name = "PyQt6Ads"
|
9 | 9 | # TODO: make dynamic in project.py
|
10 |
| -version = "4.4.0.post1" |
| 10 | +version = "4.4.0.post2" |
11 | 11 | requires-python = ">=3.9"
|
12 | 12 | description = "Python bindings for Qt Advanced Docking System"
|
13 | 13 | license = { text = "LGPL v2.1" }
|
@@ -124,22 +124,22 @@ test-groups = ["test"]
|
124 | 124 | environment-pass = ["QT_VERSION"]
|
125 | 125 | before-build = [
|
126 | 126 | "yum install -y libxkbcommon-devel",
|
127 |
| - "uvx --from aqtinstall aqt install-qt linux desktop $QT_VERSION --outputdir Qt --base http://mirrors.ocf.berkeley.edu/qt/", |
| 127 | + "uvx --from aqtinstall==3.2.0 aqt install-qt linux desktop $QT_VERSION --outputdir Qt --base http://mirrors.ocf.berkeley.edu/qt/", |
128 | 128 | ]
|
129 | 129 | repair-wheel-command = ["python scripts/repair_wheel.py {dest_dir} {wheel}"]
|
130 | 130 | test-command = [
|
131 | 131 | "yum install -y epel-release",
|
132 | 132 | "yum install -y libxkbcommon-x11 xcb-util-cursor xcb-util-wm xcb-util-keysyms xorg-x11-server-Xvfb",
|
133 | 133 | "uv pip install pytest-xvfb",
|
134 |
| - "pytest {project}/tests -v" |
| 134 | + "pytest {project}/tests -v", |
135 | 135 | ]
|
136 | 136 |
|
137 | 137 | [tool.cibuildwheel.macos]
|
138 |
| -before-build = "uvx --from aqtinstall aqt install-qt mac desktop $QT_VERSION --outputdir Qt --base http://mirrors.ocf.berkeley.edu/qt/" |
| 138 | +before-build = "uvx --from aqtinstall==3.2.0 aqt install-qt mac desktop $QT_VERSION --outputdir Qt --base http://mirrors.ocf.berkeley.edu/qt/" |
139 | 139 | repair-wheel-command = ["python scripts/repair_wheel.py {dest_dir} {wheel}"]
|
140 | 140 |
|
141 | 141 | [tool.cibuildwheel.windows]
|
142 |
| -before-build = "uvx --from aqtinstall aqt install-qt windows desktop %QT_VERSION% win64_msvc2019_64 --outputdir Qt --base http://mirrors.ocf.berkeley.edu/qt/" |
| 142 | +before-build = "uvx --from aqtinstall==3.2.0 aqt install-qt windows desktop %QT_VERSION% win64_msvc2019_64 --outputdir Qt --base http://mirrors.ocf.berkeley.edu/qt/" |
143 | 143 |
|
144 | 144 |
|
145 | 145 | # https://docs.astral.sh/ruff/
|
|
0 commit comments