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 1818 strategy :
1919 matrix :
2020 python-version : ['3.12', '3.13']
21- platform : [ubuntu-latest]
21+ platform : [ubuntu-latest, windows-latest ]
2222
2323 runs-on : ${{ matrix.platform }}
2424
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ requires-python = ">=3.12"
2121classifiers = [
2222 " Development Status :: 5 - Production/Stable" ,
2323 " Environment :: Web Environment" ,
24+ " Operating System :: Microsoft :: Windows" ,
2425 " Operating System :: POSIX" ,
2526 " Programming Language :: Python :: 3 :: Only" ,
2627 " Programming Language :: Python :: 3.12" ,
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ def _assert_rst_converts_to_notion_objects(
105105 app .build ()
106106
107107 output_file = app .outdir / "index.json"
108- with output_file .open () as f :
108+ with output_file .open (encoding = "utf-8" ) as f :
109109 generated_json : list [dict [str , Any ]] = json .load (fp = f )
110110
111111 generated_json_un_flattened = _reconstruct_nested_structure (
You can’t perform that action at this time.
0 commit comments