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

update libs, python3.12.1 and small fix to dependabot #175

Merged
merged 4 commits into from
Dec 9, 2023
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/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ updates:
interval: weekly

- package-ecosystem: docker
directory: /
directory: docker/
schedule:
interval: weekly
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ repos:
- id: check-yaml

- repo: https://github.com/psf/black
rev: "23.9.1"
rev: "23.11.0"
hooks:
- id: black

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.292
rev: v0.1.7
hooks:
- id: ruff
args: [--fix]
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.0-slim-bookworm AS base
FROM python:3.12.1-slim-bookworm AS base
ARG PYTHONUNBUFFERED=1
ARG PIP_DISABLE_PIP_VERSION_CHECK=1
ARG PIP_NO_CACHE_DIR=1
Expand All @@ -17,7 +17,7 @@ RUN addgroup --gid 1001 --system ${SERVICE_NAME} && \
adduser --gid 1001 --shell /bin/false --disabled-password --uid 1001 ${SERVICE_NAME}

FROM base as poetry
RUN pip install poetry==1.6.1
RUN pip install poetry==1.7.1
COPY poetry.lock pyproject.toml ./
RUN poetry export -o /requirements.txt --without-hashes
RUN poetry export -o /requirements-tests.txt --without-hashes --with tests
Expand Down
Loading