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

upgrade to python 3.12 #30

Merged
merged 2 commits into from
Jun 18, 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 .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.8
3.12.4
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.8-slim-bullseye as build
FROM python:3.12.4-slim-bookworm as build

RUN set -x \
&& python3 -m venv /opt/conveyor
Expand All @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
install -r /tmp/requirements.txt


FROM python:3.11.8-slim-bullseye
FROM python:3.12.4-slim-bookworm

ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --allow-unsafe --output-file=requirements.txt requirements.in
#
aiobotocore==2.12.1
aiobotocore==2.13.0
# via -r requirements.in
aiohttp==3.9.3
aiohttp==3.9.5
# via
# -r requirements.in
# aiobotocore
Expand All @@ -16,31 +16,31 @@ aiosignal==1.3.1
# via aiohttp
attrs==23.2.0
# via aiohttp
botocore==1.34.51
botocore==1.34.106
# via aiobotocore
frozenlist==1.4.1
# via
# aiohttp
# aiosignal
gunicorn==21.2.0
gunicorn==22.0.0
# via -r requirements.in
idna==3.6
idna==3.7
# via yarl
jmespath==1.0.1
# via botocore
multidict==6.0.5
# via
# aiohttp
# yarl
packaging==23.2
packaging==24.1
# via
# -r requirements.in
# gunicorn
python-dateutil==2.9.0.post0
# via botocore
six==1.16.0
# via python-dateutil
urllib3==2.0.7
urllib3==2.2.2
# via botocore
wrapt==1.16.0
# via aiobotocore
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py311
envlist = py312
skipsdist = True

[testenv]
Expand Down
Loading