Skip to content

Commit

Permalink
more name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zbilodea committed Oct 16, 2023
1 parent ec54d78 commit 9d52b92
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pytest
Use pytest-cov to generate coverage reports:

```bash
pytest --cov=Proteus
pytest --cov=Odapt
```

# Building docs
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Proteus
# Odapt

```{toctree}
:maxdepth: 2
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -99,7 +99,7 @@ def build_api_docs(session: nox.Session) -> None:
"--module-first",
"--no-toc",
"--force",
"../src/proteus",
"../src/odapt",
)


Expand Down

0 comments on commit 9d52b92

Please sign in to comment.