Skip to content

Commit

Permalink
feat(Dependencies): Update Python to v3.10.13
Browse files Browse the repository at this point in the history
| datasource      | package                       | from   | to      |
| --------------- | ----------------------------- | ------ | ------- |
| github-releases | containerbase/python-prebuild | 3.10.4 | 3.10.13 |
| docker          | python                        | 3.10.4 | 3.10.13 |
  • Loading branch information
renovate[bot] committed Oct 30, 2023
1 parent c5e1cf0 commit e88c9b2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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.13-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.13-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.13-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.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = ""
authors = ["gilbus", "ekatchko"]

[tool.poetry.dependencies]
python = "3.10.4"
python = "3.10.13"
aiohttp = "3.8.6"
aiohttp-swagger = "1.0.16"
aiohttp_jinja2 = "1.5.1"
Expand Down

0 comments on commit e88c9b2

Please sign in to comment.