diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index ab3900f..a99efb0 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -71,7 +71,7 @@ pytest Use pytest-cov to generate coverage reports: ```bash -pytest --cov=Proteus +pytest --cov=Odapt ``` # Building docs diff --git a/docs/conf.py b/docs/conf.py index 1bb2c7d..6316841 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,10 +2,10 @@ import importlib.metadata -project = "Proteus" +project = "Odapt" copyright = "2023, Zoë Bilodeau" author = "Zoë Bilodeau" -version = release = importlib.metadata.version("proteus") +version = release = importlib.metadata.version("odapt") extensions = [ "myst_parser", diff --git a/docs/index.md b/docs/index.md index 4b55379..f926b6f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# Proteus +# Odapt ```{toctree} :maxdepth: 2 diff --git a/noxfile.py b/noxfile.py index 90a3a7e..5632317 100644 --- a/noxfile.py +++ b/noxfile.py @@ -30,7 +30,7 @@ def pylint(session: nox.Session) -> None: # This needs to be installed into the package environment, and is slower # than a pre-commit check session.install(".", "pylint") - session.run("pylint", "proteus", *session.posargs) + session.run("pylint", "odapt", *session.posargs) @nox.session @@ -99,7 +99,7 @@ def build_api_docs(session: nox.Session) -> None: "--module-first", "--no-toc", "--force", - "../src/proteus", + "../src/odapt", )