File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -232,8 +232,9 @@ def tests_build_wheel(monkeypatch, tmpdir):
232
232
names = z .namelist ()
233
233
share = zipfile .Path (z , "pybind11/share" )
234
234
pkgconfig = (share / "pkgconfig/pybind11.pc" ).read_text (encoding = "utf-8" )
235
- cmakeconfig = (share / "cmake/pybind11/pybind11Config.cmake" ).read_text (encoding = "utf-8" )
236
-
235
+ cmakeconfig = (share / "cmake/pybind11/pybind11Config.cmake" ).read_text (
236
+ encoding = "utf-8"
237
+ )
237
238
238
239
trimmed = {n for n in names if "dist-info" not in n }
239
240
trimmed |= {f"dist-info/{ n .split ('/' , 1 )[- 1 ]} " for n in names if "dist-info" in n }
@@ -273,7 +274,9 @@ def tests_build_global_wheel(monkeypatch, tmpdir):
273
274
274
275
share = zipfile .Path (z , f"{ beginning } .data/data/share" )
275
276
pkgconfig = (share / "pkgconfig/pybind11.pc" ).read_text (encoding = "utf-8" )
276
- cmakeconfig = (share / "cmake/pybind11/pybind11Config.cmake" ).read_text (encoding = "utf-8" )
277
+ cmakeconfig = (share / "cmake/pybind11/pybind11Config.cmake" ).read_text (
278
+ encoding = "utf-8"
279
+ )
277
280
278
281
trimmed = {n [len (beginning ) + 1 :] for n in names }
279
282
You can’t perform that action at this time.
0 commit comments