File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
====
3
3
4
4
- Fixed support for Matplotlib 3.5.
5
+ - Bumped dependencies to pybind11≥2.8.
5
6
- Bumped supported raqm versions to ≥0.7; fixed integration with raqm 0.7.2.
6
7
- Support Qt6 and GTK4.
7
8
- Support HiDPI on GTK (it was already supported on Qt).
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ def exec_module(module):
218
218
python_requires = ">=3.7" ,
219
219
setup_requires = [
220
220
"setuptools_scm" ,
221
- "pybind11>=2.6 .0" ,
221
+ "pybind11>=2.8 .0" ,
222
222
* (["pycairo>=1.16.0" ] if not MANYLINUX else []),
223
223
],
224
224
use_scm_version = { # xref __init__.py
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ py::bytes Region::get_straight_argb32_bytes()
135
135
u32_ptr[i] = (u32_ptr[i] >> 8 ) + (u32_ptr[i] << 24 ); // RGBA->ARGB
136
136
}
137
137
}
138
- return py::bytes{static_cast <char const *>(buf.ptr ), size_t ( size) };
138
+ return py::bytes{static_cast <char const *>(buf.ptr ), size};
139
139
}
140
140
141
141
py::object renderer_base (std::string meth_name)
You can’t perform that action at this time.
0 commit comments