Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
scnerd committed Jun 3, 2024
1 parent acfee58 commit 100a810
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 11 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ repos:
rev: 24.4.2
hooks:
- id: black
additional_dependencies: [ 'click!=8.1.0' ]

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.4.7'
Expand Down
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinx_click",
"myst_parser",
]
autodoc_typehints = "description"
Expand Down
1 change: 0 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
furo==2022.12.7
sphinx==5.3.0
sphinx-click==4.4.0
myst_parser==3.0.1
6 changes: 0 additions & 6 deletions docs/usage.md
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
# Usage

```{eval-rst}
.. click:: pynamodb_single_table.__main__:main
:prog: pynamodb_single_table
:nested: full
```
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def docs_build(session: Session) -> None:
args.insert(0, "--color")

session.install(".")
session.install("sphinx", "sphinx-click", "furo", "myst-parser")
session.install("sphinx", "furo", "myst-parser")

build_dir = Path("docs", "_build")
if build_dir.exists():
Expand All @@ -223,7 +223,7 @@ def docs(session: Session) -> None:
"""Build and serve the documentation with live reloading on file changes."""
args = session.posargs or ["--open-browser", "docs", "docs/_build"]
session.install(".")
session.install("sphinx", "sphinx-autobuild", "sphinx-click", "furo", "myst-parser")
session.install("sphinx", "sphinx-autobuild", "furo", "myst-parser")

build_dir = Path("docs", "_build")
if build_dir.exists():
Expand Down

0 comments on commit 100a810

Please sign in to comment.