From 0db23d18c372e26993752a56d9f37514f01b3098 Mon Sep 17 00:00:00 2001 From: spwoodcock <sam.woodcock@protonmail.com> Date: Thu, 18 Jan 2024 16:55:21 +0000 Subject: [PATCH] build: add git-revision-date-localized plugin to docs group --- src/backend/pdm.lock | 63 ++++++++++++++++++++++++++++++++++---- src/backend/pyproject.toml | 1 + 2 files changed, 58 insertions(+), 6 deletions(-) diff --git a/src/backend/pdm.lock b/src/backend/pdm.lock index d5b488c3c4..7f92b3e1fe 100644 --- a/src/backend/pdm.lock +++ b/src/backend/pdm.lock @@ -3,10 +3,9 @@ [metadata] groups = ["default", "debug", "dev", "docs", "test"] -cross_platform = true -static_urls = false -lock_version = "4.3" -content_hash = "sha256:9556561c676e33e67720017892e8e0516fa484a976288ce3050d4da30fefe1ec" +strategy = ["cross_platform"] +lock_version = "4.4.1" +content_hash = "sha256:80794d6db7b8d5838b7acde428f467ef529d2cc0b35cf9d51291b61d7ff8b233" [[package]] name = "aiohttp" @@ -224,7 +223,7 @@ version = "23.12.0" requires_python = ">=3.8" summary = "The uncompromising code formatter." dependencies = [ - "aiohttp>=3.7.4; sys_platform != \"win32\" or implementation_name != \"pypy\" and extra == \"d\"", + "aiohttp>=3.7.4; sys_platform != \"win32\" or implementation_name != \"pypy\"", "click>=8.0.0", "mypy-extensions>=0.4.3", "packaging>=22.0", @@ -741,6 +740,32 @@ files = [ {file = "ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619"}, ] +[[package]] +name = "gitdb" +version = "4.0.11" +requires_python = ">=3.7" +summary = "Git Object Database" +dependencies = [ + "smmap<6,>=3.0.1", +] +files = [ + {file = "gitdb-4.0.11-py3-none-any.whl", hash = "sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4"}, + {file = "gitdb-4.0.11.tar.gz", hash = "sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b"}, +] + +[[package]] +name = "gitpython" +version = "3.1.41" +requires_python = ">=3.7" +summary = "GitPython is a Python library used to interact with Git repositories" +dependencies = [ + "gitdb<5,>=4.0.1", +] +files = [ + {file = "GitPython-3.1.41-py3-none-any.whl", hash = "sha256:c36b6634d069b3f719610175020a9aed919421c87552185b085e04fbbdb10b7c"}, + {file = "GitPython-3.1.41.tar.gz", hash = "sha256:ed66e624884f76df22c8e16066d567aaa5a37d5b5fa19db2c6df6f7156db9048"}, +] + [[package]] name = "greenlet" version = "3.0.2" @@ -1197,6 +1222,22 @@ files = [ {file = "mkdocs-exclude-1.0.2.tar.gz", hash = "sha256:ba6fab3c80ddbe3fd31d3e579861fd3124513708271180a5f81846da8c7e2a51"}, ] +[[package]] +name = "mkdocs-git-revision-date-localized-plugin" +version = "1.2.2" +requires_python = ">=3.6" +summary = "Mkdocs plugin that enables displaying the localized date of the last git modification of a markdown file." +dependencies = [ + "GitPython", + "babel>=2.7.0", + "mkdocs>=1.0", + "pytz", +] +files = [ + {file = "mkdocs-git-revision-date-localized-plugin-1.2.2.tar.gz", hash = "sha256:0c43a9aac1fa69df99a823f833cc223bac9967b60d5261a857761c7c6e3b30de"}, + {file = "mkdocs_git_revision_date_localized_plugin-1.2.2-py3-none-any.whl", hash = "sha256:85c7fe9ab06e7a63c4e522c26fee8b51d357cb8cbe605064501ad80f4f31cb94"}, +] + [[package]] name = "mkdocs-material" version = "9.4.14" @@ -2312,6 +2353,16 @@ files = [ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] +[[package]] +name = "smmap" +version = "5.0.1" +requires_python = ">=3.7" +summary = "A pure Python implementation of a sliding window memory map manager" +files = [ + {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, + {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, +] + [[package]] name = "sniffio" version = "1.3.0" @@ -2338,7 +2389,7 @@ version = "2.0.23" requires_python = ">=3.7" summary = "Database Abstraction Library" dependencies = [ - "greenlet!=0.4.17; platform_machine == \"aarch64\" or (platform_machine == \"ppc64le\" or (platform_machine == \"x86_64\" or (platform_machine == \"amd64\" or (platform_machine == \"AMD64\" or (platform_machine == \"win32\" or platform_machine == \"WIN32\")))))", + "greenlet!=0.4.17; platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\"", "typing-extensions>=4.2.0", ] files = [ diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 0c6f130bee..f53c7d696e 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -83,6 +83,7 @@ docs = [ "mkdocstrings-python==1.7.5", "mkdocs-exclude==1.0.2", "python-dotenv==1.0.0", + "mkdocs-git-revision-date-localized-plugin>=1.2.2", ] [tool.black]