Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update mkdocs-ezglossary-plugin version used for building docs #210

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ repos:
- id: remove-tabs
- id: forbid-tabs
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.2
rev: 0.28.3
hooks:
- id: check-readthedocs
- id: check-dependabot
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ markupsafe==2.1.5 ; python_version >= "3.8" and python_version < "4.0"
mergedeep==1.3.4 ; python_version >= "3.8" and python_version < "4.0"
mkdocs==1.6.0 ; python_version >= "3.8" and python_version < "4.0"
mkdocs-autorefs==1.0.1 ; python_version >= "3.8" and python_version < "4.0"
mkdocs-ezglossary-plugin==1.6.8 ; python_version >= "3.8" and python_version < "4.0"
mkdocs-ezglossary-plugin==1.6.10 ; python_version >= "3.8" and python_version < "4.0"
mkdocs-gen-files==0.5.0 ; python_version >= "3.8" and python_version < "4.0"
mkdocs-get-deps==0.2.0 ; python_version >= "3.8" and python_version < "4.0"
mkdocs-include-markdown-plugin==6.0.6 ; python_version >= "3.8" and python_version < "4.0"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ pre-commit = [
pre-commit-update = "^0.3.0"
pyclean = "^3.0.0"
pylint = "3.1.0"
pyright = "1.1.361"
pyright = "1.1.362"
pyroma = "^4.2"
python-semantic-release = "^9.6.0"
ruff = "0.4.3"
Expand All @@ -131,7 +131,7 @@ yamlfix = "^1.16.0"
black = "^24.4.2"
codespell = "^2.2.6"
mkdocs = "^1.6.0"
mkdocs-ezglossary-plugin = "^1.6.8"
mkdocs-ezglossary-plugin = "^1.6.10"
mkdocs-gen-files = "^0.5.0"
mkdocs-include-markdown-plugin = "^6.0.5"
mkdocs-literate-nav = "^0.6.1"
Expand Down
6 changes: 6 additions & 0 deletions scripts/update_development_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"""

import argparse
import contextlib
import shlex
import subprocess
import sys
Expand Down Expand Up @@ -112,6 +113,11 @@ def main() -> None:
f'"{python_executable}" -m poetry export --only {group} '
f"--without-hashes --output {group}/requirements.txt"
)
# Sort the requirements files (ignore failures due to changed files
with contextlib.suppress(subprocess.CalledProcessError):
_run_cmd_in_subprocess(
f'"{python_executable}" -m pre_commit run --all requirements-txt-fixer'
)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
beautifulsoup4==4.12.3 ; python_version >= "3.8" and python_version < "4.0"
blinker==1.8.1 ; python_version >= "3.8" and python_version < "4.0"
blinker==1.8.2 ; python_version >= "3.8" and python_version < "4.0"
certifi==2024.2.2 ; python_version >= "3.8" and python_version < "4.0"
chardet==5.2.0 ; python_version >= "3.8" and python_version < "4.0"
charset-normalizer==3.3.2 ; python_version >= "3.8" and python_version < "4.0"
Expand Down
Loading