Skip to content

chore(deps): update all dependencies #91

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

Merged
merged 1 commit into from
May 28, 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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install Poetry
uses: snok/[email protected]
with:
version: 1.8.2
version: 1.8.3
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
python-version: ["3.12.0", "3.12.x"]
poetry-version:
["1.2.2", "1.3.2", "1.4.2", "1.5.1", "1.6.1", "1.7.1", "1.8.2"]
["1.2.2", "1.3.2", "1.4.2", "1.5.1", "1.6.1", "1.7.1", "1.8.3"]
fail-fast: false

steps:
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ default_language_version:
repos:
# general checks (see here: https://pre-commit.com/hooks.html)
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-yaml
args: [--allow-multiple-documents]
Expand All @@ -16,7 +16,7 @@ repos:

# black - formatting
- repo: https://github.com/psf/black
rev: 24.2.0
rev: 24.4.2
hooks:
- id: black
name: black
Expand All @@ -26,14 +26,14 @@ repos:

# ruff - linting
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.3.0"
rev: "v0.4.5"
hooks:
- id: ruff
name: ruff

# mypy - lint-like type checking
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
rev: v1.10.0
hooks:
- id: mypy
name: mypy
Expand All @@ -60,7 +60,7 @@ repos:

# bandit - find common security issues
- repo: https://github.com/pycqa/bandit
rev: 1.7.7
rev: 1.7.8
hooks:
- id: bandit
name: bandit
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12.2
3.12.3
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.2-slim-bookworm as python-base
FROM python:3.12.3-slim-bookworm as python-base

ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
Expand All @@ -16,7 +16,7 @@ RUN apt-get update \
curl \
build-essential

ENV POETRY_VERSION=1.8.2
ENV POETRY_VERSION=1.8.3
RUN curl -sSL https://install.python-poetry.org | python

WORKDIR $PYSETUP_PATH
Expand Down
318 changes: 159 additions & 159 deletions poetry.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ myapplication = "myapplication.main:main"
python = "^3.12"

[tool.poetry.dev-dependencies]
pytest = "8.0.2"
pytest-cov = "4.1.0"
black = "24.2.0"
mypy = "1.8.0"
bandit = "1.7.7"
pytest = "8.2.1"
pytest-cov = "5.0.0"
black = "24.4.2"
mypy = "1.10.0"
bandit = "1.7.8"
docformatter = "1.7.5"
ruff = "0.3.0"
ruff = "0.4.5"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down