Skip to content

Commit

Permalink
馃摎 DOCS: Fix dependencies (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Apr 13, 2022
1 parent 9ed19b8 commit 4e9d69e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ exclude: >
repos:

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.2.0
hooks:
- id: check-json
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace

- repo: https://github.com/mgedmin/check-manifest
rev: "0.47"
rev: "0.48"
hooks:
- id: check-manifest
args: [--no-build-isolation]
Expand All @@ -32,7 +32,7 @@ repos:
- id: isort

- repo: https://github.com/psf/black
rev: 21.11b1
rev: 22.3.0
hooks:
- id: black

Expand All @@ -46,7 +46,7 @@ repos:
# - flake8-self~=0.2.2

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910-1
rev: v0.942
hooks:
- id: mypy
args: [--config-file=setup.cfg]
Expand Down
2 changes: 1 addition & 1 deletion myst_parser/parse_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def find(
if include_self:
iterator = itertools.chain([self], iterator)
if inspect.isclass(identifier):
test_func = lambda c: isinstance(c, identifier) # type: ignore[arg-type] # noqa: E731,E501
test_func = lambda c: isinstance(c, identifier) # noqa: E731
else:
test_func = lambda c: c.name == identifier # noqa: E731
classes = set(classes) if classes is not None else classes
Expand Down
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ linkify =
# Note: This is only required for internal use
rtd =
ipython
sphinx-book-theme~=0.1.0
sphinx-panels~=0.5.2
sphinxcontrib-bibtex~=2.1
sphinxext-rediraffe~=0.2
sphinxcontrib.mermaid~=0.6.3
sphinxext-opengraph~=0.4.2
sphinx-book-theme
sphinx-panels
sphinxcontrib-bibtex~=2.4
sphinxext-rediraffe~=0.2.7
sphinxcontrib.mermaid~=0.7.1
sphinxext-opengraph~=0.6.3
testing =
beautifulsoup4
coverage
Expand Down

0 comments on commit 4e9d69e

Please sign in to comment.