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

feat(Dependencies): Update Python to v3.10.16 #158

Open
wants to merge 1 commit into
base: dev
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
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.4-alpine as builder
FROM python:3.10.16-alpine as builder

ADD src /code/src
ADD pyproject.toml poetry.lock /code/
Expand All @@ -9,7 +9,7 @@ RUN pip install poetry && poetry build -f wheel

# by using a build container we prevent us from carrying around poetry
# alongside its dependencies
FROM python:3.10.4-alpine
FROM python:3.10.16-alpine
ARG OS_CREDITS_VERSION
ARG WHEEL_NAME=os_credits-2.0.0-py3-none-any.whl
EXPOSE 80
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Expected to be called with `--volume $(PWD)/src:/code/src:ro`
# Uses `adev` from `aiohttp-devtools` to restart the application on any code change
FROM python:3.10.4-alpine
FROM python:3.10.16-alpine

ADD src /code/src
ADD pyproject.toml poetry.lock /code/
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tool.poetry]
name = "os_credits"
version = "2.2.0"
version = "2.3.0"
description = ""
authors = ["gilbus", "ekatchko"]

[tool.poetry.dependencies]
python = "3.10.4"
python = "3.10.16"
aiohttp = "3.9.4"
aiohttp-swagger = "1.0.16"
aiohttp_jinja2 = "1.5.1"
Expand Down
Loading