Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post-release fixes for 0.7.0 #2815

Merged
merged 3 commits into from
Oct 10, 2023
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 python/doc/source/jupytext_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def process():
demo = demo.resolve()
here = os.getcwd()
os.chdir(demo_dir)
runpy.run_path(demo)
runpy.run_path(str(demo))
os.chdir(here)

# Copy images used in demos
Expand Down
4 changes: 2 additions & 2 deletions python/dolfinx/wrappers/io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void xdmf_real_fn(auto&& m)
{ self.write_meshtags(meshtags, x, geometry_xpath, xpath); },
py::arg("meshtags"), py::arg("x"), py::arg("geometry_xpath"),
py::arg("xpath") = "/Xdmf/Domain");
};
}

template <typename T, typename U>
void xdmf_scalar_fn(auto&& m)
Expand All @@ -61,7 +61,7 @@ void xdmf_scalar_fn(auto&& m)
{ self.write_function(u, t, mesh_xpath); },
py::arg("u"), py::arg("t"),
py::arg("mesh_xpath") = "/Xdmf/Domain/Grid[@GridType='Uniform'][1]");
};
}

template <typename T>
void vtk_real_fn(auto&& m)
Expand Down
Loading