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

[Auto-generated] Update dependencies #231

Merged
merged 4 commits into from
Jan 4, 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 .github/workflows/ci_check_pyproject_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
- name: Fetch PR body
if: env.UPDATE_DEPS == 'true'
id: pr_body
uses: chuhlomin/render-template@v1.8
uses: chuhlomin/render-template@v1.9
with:
template: ${{ env.PR_BODY_FILE }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:

- name: Fetch PR body
id: pr_body
uses: chuhlomin/render-template@v1.8
uses: chuhlomin/render-template@v1.9
with:
template: ${{ env.PR_BODY_FILE }}

Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ repos:
# Black is a code style and formatter
# It works on files in-place
- repo: https://github.com/ambv/black
rev: 23.11.0
rev: 23.12.1
hooks:
- id: black

Expand All @@ -42,7 +42,7 @@ repos:
# More information can be found in its documentation:
# https://docs.astral.sh/ruff/
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.7
rev: v0.1.9
hooks:
- id: ruff
# Fix what can be fixed in-place and exit with non-zero status if files were
Expand All @@ -57,7 +57,7 @@ repos:
# More information can be found in its documentation:
# https://bandit.readthedocs.io/en/latest/
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
rev: 1.7.6
hooks:
- id: bandit
args: ["-r"]
Expand All @@ -69,12 +69,12 @@ 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.7.1
rev: v1.8.0
hooks:
- id: mypy

- repo: https://github.com/SINTEF/ci-cd
rev: v2.6.0
rev: v2.7.1
hooks:
- id: docs-api-reference
args:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies = [
"packaging ~=23.2",
"tomlkit ~=0.12.3",
"typing-extensions ~=4.7; python_version < '3.8'",
"typing-extensions ~=4.8; python_version >= '3.8'",
"typing-extensions ~=4.9; python_version >= '3.8'",
]

[project.optional-dependencies]
Expand Down