From f43790dbaf7b420e1505262fa2e3d9fa37af5591 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 11:09:51 -0800 Subject: [PATCH 1/2] Bump pre-commit from 3.5.0 to 3.6.0 (#278) Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.5.0 to 3.6.0. - [Release notes](https://github.com/pre-commit/pre-commit/releases) - [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/pre-commit/pre-commit/compare/v3.5.0...v3.6.0) --- updated-dependencies: - dependency-name: pre-commit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 65b4e766..0b040b87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ docs = ["m2r2==0.3.2", "sphinx-tabs==3.4.4", "sphinx-toolbox==3.5.0", "furo==2023.9.10"] -dev = ["pre-commit==3.5.0"] +dev = ["pre-commit==3.6.0"] [tool.hatch.version] path = "kwave/__init__.py" From 20890d20ca9e4e580f932e9c8b5d3281c7a79f87 Mon Sep 17 00:00:00 2001 From: Walter Simson Date: Thu, 1 Feb 2024 11:21:08 -0800 Subject: [PATCH 2/2] Remove module name from object names in the documentation. (#285) * Remove module name from object names in the documentation. * Update conf.py --- docs/conf.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index a7bd798f..6f492f23 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -6,10 +6,10 @@ # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information -project = 'k-wave-python' +project = 'k-Wave-python' copyright = '2022, Walter Simson, Farid Yagubbayli' author = 'Walter Simson, Farid Yagubbayli' -version = '0.1.0' +version = '0.3.1' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration @@ -55,3 +55,6 @@ # Don't show class signature with the class' name. autodoc_class_signature = "separated" + +# Remove module name from object names +add_module_names = False