From d3080a66bb80b460fa36b292e8aaa892dda59d04 Mon Sep 17 00:00:00 2001 From: "TEAM 4.0[bot]" Date: Mon, 6 Nov 2023 11:32:46 +0100 Subject: [PATCH] [Auto-generated] Update dependencies (#48) Update GH Actions: * Bump SINTEF/ci-cd from 2.5.1 to 2.5.3 (#43, #47) Update dependencies in `pyproject.toml` (#44, #45, #46) Update `pre-commit` hooks. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci_automerge_dependencies.yml | 2 +- .github/workflows/ci_cd_updated_main.yml | 2 +- .github/workflows/ci_check_dependencies.yml | 2 +- .github/workflows/ci_tests.yml | 2 +- .github/workflows/ci_update_dependencies.yml | 2 +- .pre-commit-config.yaml | 6 +++--- pyproject.toml | 8 ++++---- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci_automerge_dependencies.yml b/.github/workflows/ci_automerge_dependencies.yml index fa7172d..7939b6e 100644 --- a/.github/workflows/ci_automerge_dependencies.yml +++ b/.github/workflows/ci_automerge_dependencies.yml @@ -7,7 +7,7 @@ on: jobs: update-dependencies-branch: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_automerge_prs.yml@v2.5.1 + uses: SINTEF/ci-cd/.github/workflows/ci_automerge_prs.yml@v2.5.3 if: github.repository_owner == 'SINTEF' && ( ( startsWith(github.event.pull_request.head.ref, 'dependabot/') && github.actor == 'dependabot[bot]' ) || ( github.event.pull_request.head.ref == 'ci/update-pyproject' && github.actor == 'TEAM4-0' ) ) secrets: PAT: ${{ secrets.TEAM40_PAT }} diff --git a/.github/workflows/ci_cd_updated_main.yml b/.github/workflows/ci_cd_updated_main.yml index acac0f6..885c856 100644 --- a/.github/workflows/ci_cd_updated_main.yml +++ b/.github/workflows/ci_cd_updated_main.yml @@ -7,7 +7,7 @@ on: jobs: update-deps-branch-and-docs: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_cd_updated_default_branch.yml@v2.5.1 + uses: SINTEF/ci-cd/.github/workflows/ci_cd_updated_default_branch.yml@v2.5.3 if: github.repository_owner == 'SINTEF' with: # General diff --git a/.github/workflows/ci_check_dependencies.yml b/.github/workflows/ci_check_dependencies.yml index 7fee24b..4bcb35f 100644 --- a/.github/workflows/ci_check_dependencies.yml +++ b/.github/workflows/ci_check_dependencies.yml @@ -9,7 +9,7 @@ on: jobs: check-dependencies: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_check_pyproject_dependencies.yml@v2.5.1 + uses: SINTEF/ci-cd/.github/workflows/ci_check_pyproject_dependencies.yml@v2.5.3 if: github.repository_owner == 'SINTEF' with: git_username: "TEAM 4.0[bot]" diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 2a724b6..f8acbf0 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -10,7 +10,7 @@ on: jobs: basic-tests: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_tests.yml@v2.5.1 + uses: SINTEF/ci-cd/.github/workflows/ci_tests.yml@v2.5.3 with: # General setup install_extras: "[dev]" diff --git a/.github/workflows/ci_update_dependencies.yml b/.github/workflows/ci_update_dependencies.yml index cc1ad07..542d141 100644 --- a/.github/workflows/ci_update_dependencies.yml +++ b/.github/workflows/ci_update_dependencies.yml @@ -9,7 +9,7 @@ on: jobs: create-collected-pr: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_update_dependencies.yml@v2.5.1 + uses: SINTEF/ci-cd/.github/workflows/ci_update_dependencies.yml@v2.5.3 if: github.repository_owner == 'SINTEF' with: # General diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cfa308b..a9c7a11 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,7 +7,7 @@ repos: # To get an overview of them all as well as the ones used here, please see # https://github.com/pre-commit/pre-commit-hooks#hooks-available - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: end-of-file-fixer - id: debug-statements @@ -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.9.1 + rev: 23.10.1 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.5.1 + rev: v1.6.1 hooks: - id: mypy exclude: ^docs/example/.*$$ diff --git a/pyproject.toml b/pyproject.toml index a6d1ce3..4483ba8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ requires-python = "~=3.10" dynamic = ["version", "description"] dependencies = [ - "fastapi ~=0.103.1", + "fastapi ~=0.104.0", "pydantic-settings ~=2.0", "pymongo ~=4.5", "python-dotenv ~=1.0", @@ -47,9 +47,9 @@ dependencies = [ # "pytest-cov ~=4.0", # ] dev = [ - "pre-commit ~=3.4", - "pylint ~=2.17", - "pylint-pydantic ~=0.2.4", + "pre-commit ~=3.5", + "pylint ~=3.0", + "pylint-pydantic ~=0.3.0", ] [project.urls]