From 854c42770702b14ba299b3dde07883bf9019080a Mon Sep 17 00:00:00 2001 From: "TEAM 4.0[bot]" Date: Mon, 6 Nov 2023 06:38:44 +0100 Subject: [PATCH 1/4] [Auto-generated] Check & update dependencies (`pyproject.toml`) (#206) Update dependencies in `pyproject.toml` --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9d333517..d263f7e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,12 +30,12 @@ dynamic = ["version", "description"] dependencies = [ "invoke ~=2.2", - "tomlkit ~=0.12.1", + "tomlkit ~=0.12.2", ] [project.optional-dependencies] docs = [ - "mike ~=1.1", + "mike ~=2.0", "mkdocs ~=1.5", "mkdocs-awesome-pages-plugin ~=2.9", "mkdocs-material ~=9.2", From d1068b31334cb68b56696542a7698ad783768454 Mon Sep 17 00:00:00 2001 From: "TEAM 4.0[bot]" Date: Fri, 17 Nov 2023 15:49:39 +0000 Subject: [PATCH 2/4] Update dependencies in `pyproject.toml` --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ba296363..661fc6b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ dynamic = ["version", "description"] dependencies = [ "invoke ~=2.2", "packaging ~=23.2", - "tomlkit ~=0.12.2", + "tomlkit ~=0.12.3", ] [project.optional-dependencies] From 9855740dde88f5a9a5854e6196d67d7c56c8ed79 Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Fri, 17 Nov 2023 17:01:01 +0100 Subject: [PATCH 3/4] Update dependencies to support Python 3.8+ versions This is only for optional dependencies. Development is recommended to happen in minimum Python 3.9. --- pyproject.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 661fc6b3..dfdd0e66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,15 +40,18 @@ docs = [ "mkdocs ~=1.5", "mkdocs-awesome-pages-plugin ~=2.9", "mkdocs-material ~=9.2", - "mkdocstrings[python-legacy] ~=0.22.0", + "mkdocstrings[python-legacy] ~=0.22.0; python_version < '3.8'", + "mkdocstrings[python-legacy] ~=0.24.0; python_version >= '3.8'", ] testing = [ "pytest ~=7.4", "pytest-cov ~=4.1", ] dev = [ - "pre-commit ~=2.21", - "pylint ~=2.13", + "pre-commit ~=2.21; python_version < '3.8'", + "pre-commit ~=3.5; python_version >= '3.8'", + "pylint ~=2.13; python_version < '3.8'", + "pylint ~=3.0; python_version >= '3.8'", "ci-cd[docs,testing]", ] From 81ba7f69fe4b50cdd53c34d8fc4d79fb7e18d30b Mon Sep 17 00:00:00 2001 From: "TEAM 4.0[bot]" Date: Fri, 17 Nov 2023 16:05:22 +0000 Subject: [PATCH 4/4] Update `pre-commit` hooks --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 67f177d1..bd6a611b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: # Black is a code style and formatter # It works on files in-place - repo: https://github.com/ambv/black - rev: 23.10.1 + rev: 23.11.0 hooks: - id: black @@ -49,7 +49,7 @@ repos: # The project's documentation can be found at: # https://mypy.readthedocs.io/en/stable/index.html - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.6.1 + rev: v1.7.0 hooks: - id: mypy