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

fix(deps): update dependencies (minor) #45

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
- id: check-useless-excludes

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python 3.10.16
poetry 1.4.2
python 3.13.1
poetry 1.8.5
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim-bullseye as python-build-stage
FROM python:3.13-slim-bullseye as python-build-stage
WORKDIR /src

RUN apt-get update && apt-get upgrade -y \
Expand All @@ -11,7 +11,7 @@ RUN pip install --isolated --no-cache-dir --no-input poetry \
&& poetry config virtualenvs.create false \
&& poetry install --no-interaction --without=dev

FROM public.ecr.aws/lambda/python:3.9 as python-run-stage
FROM public.ecr.aws/lambda/python:3.13 as python-run-stage

COPY --from=python-build-stage /usr/local/lib/python3.10/site-packages /usr/local/lib/python3.10/site-packages
ENV PYTHONPATH=/usr/local/lib/python3.10/site-packages
Expand Down
93 changes: 2 additions & 91 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version = "0.1.0"
readme = "README.md"

[tool.poetry.dependencies]
python = "~3.10"
python = "~3.13.0"
slackclient = "^2.9.4"
black = "^23.3.0"

Expand Down
Loading