Skip to content

Commit

Permalink
Update dependency lock file (#35)
Browse files Browse the repository at this point in the history
* Update dependency lock file

* chore: auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
ssbarnea and pre-commit-ci[bot] authored May 21, 2023
1 parent 92e76bd commit ce9d9d7
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 26 deletions.
38 changes: 19 additions & 19 deletions .config/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# pip-compile --no-annotate --output-file=.config/requirements.txt --resolver=backtracking --strip-extras --unsafe-package=ruamel-yaml-clib pyproject.toml
#
beautifulsoup4==4.12.2
cairocffi==1.5.0
cairocffi==1.5.1
cairosvg==2.7.0
certifi==2022.12.7
certifi==2023.5.7
cffi==1.15.1
charset-normalizer==3.1.0
click==8.1.3
Expand All @@ -16,45 +16,45 @@ csscompressor==0.9.5
cssselect2==0.7.0
defusedxml==0.7.1
ghp-import==2.1.0
griffe==0.27.0
griffe==0.28.0
htmlmin2==0.1.13
idna==3.4
importlib-metadata==6.3.0
importlib-metadata==6.6.0
jinja2==3.1.2
jsmin==3.0.1
markdown==3.3.7
markdown-exec==1.4.0
markdown-exec==1.6.0
markdown-include==0.8.1
markupsafe==2.1.2
mergedeep==1.3.4
mkdocs==1.4.2
mkdocs==1.4.3
mkdocs-autorefs==0.4.1
mkdocs-gen-files==0.4.0
mkdocs-htmlproofer-plugin==0.12.0
mkdocs-material==9.1.6
mkdocs-gen-files==0.5.0
mkdocs-htmlproofer-plugin==0.13.1
mkdocs-material==9.1.14
mkdocs-material-extensions==1.1.1
mkdocs-minify-plugin==0.6.4
mkdocs-monorepo-plugin==1.0.4
mkdocs-monorepo-plugin==1.0.5
mkdocstrings==0.21.2
mkdocstrings-python==0.9.0
packaging==23.0
mkdocstrings-python==1.0.0
packaging==23.1
pillow==9.5.0
pipdeptree==2.7.0
pipdeptree==2.7.1
pycparser==2.21
pygments==2.15.0
pymdown-extensions==9.11
pygments==2.15.1
pymdown-extensions==10.0.1
python-dateutil==2.8.2
python-slugify==8.0.1
pyyaml==6.0
pyyaml-env-tag==0.1
regex==2023.3.23
requests==2.28.2
regex==2023.5.5
requests==2.30.0
six==1.16.0
soupsieve==2.4
soupsieve==2.4.1
text-unidecode==1.3
tinycss2==1.2.1
typing-extensions==4.5.0
urllib3==1.26.15
urllib3==2.0.2
watchdog==3.0.0
webencodings==0.5.1
zipp==3.15.0
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
- id: check-useless-excludes
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before yamllint
rev: v3.0.0-alpha.6
rev: v3.0.0-alpha.9-for-vscode
hooks:
- id: prettier
always_run: true
Expand All @@ -33,7 +33,7 @@ repos:
args: [--relative, --no-progress, --no-summary]
name: Spell check with cspell
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.22.0
rev: 0.23.0
hooks:
- id: check-github-workflows
- repo: https://github.com/pre-commit/pre-commit-hooks.git
Expand All @@ -58,7 +58,7 @@ repos:
additional_dependencies:
- tomli
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.30.0
rev: v1.31.0
hooks:
- id: yamllint
files: \.(yaml|yml)$
Expand Down Expand Up @@ -90,16 +90,16 @@ repos:
- flake8-future-annotations>=0.0.3
- repo: https://github.com/asottile/pyupgrade
# keep it after flake8
rev: v3.3.1
rev: v3.4.0
hooks:
- id: pyupgrade
args: ["--py39-plus"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.1.1
rev: v1.3.0
hooks:
- id: mypy
# empty args needed in order to match mypy cli behavior
args: [--strict]
args: []
additional_dependencies: []
- repo: https://github.com/pycqa/pylint
rev: v3.0.0a6
Expand All @@ -109,7 +109,7 @@ repos:
- --output-format=colorized
additional_dependencies: []
- repo: https://github.com/jazzband/pip-tools
rev: 6.12.3
rev: 6.13.0
hooks:
- id: pip-compile
name: lock
Expand Down
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,19 @@ changelog = "https://github.com/ansible/mkdocs-ansible/releases"
[project.entry-points."mkdocs.themes"]
ansible = "mkdocs_ansible"

[tool.mypy]
strict = true
python_version = "3.9"
warn_unused_configs = true
exclude = ['build']

[[tool.mypy.overrides]]
module = ["mkdocs_ansible._version"]
warn_unused_ignores = false

[[tool.mypy.overrides]]
module = ["mkdocs_ansible"]
warn_unused_ignores = false # https://github.com/python/mypy/issues/13201

[tool.pylint.MASTER]
ignore-paths = "^src/.*/(_version|_vendor).*$"
Expand Down
1 change: 1 addition & 0 deletions src/mkdocs_ansible/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""mkdocs-ansible theme."""
try:
from ._version import version as __version__ # type: ignore

except ImportError: # pragma: no cover
__version__ = "0.1.dev1"

Expand Down

0 comments on commit ce9d9d7

Please sign in to comment.