Skip to content

Commit 5cf8bc7

Browse files
renovate[bot]csikb
andauthored
feat(deps): update python to v3.14.0 (#226)
This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [python](https://python.org) ([source](https://redirect.github.com/python/cpython)) | requires-python | minor | `==3.12.12` -> `==3.14.0` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/python/cpython/badge)](https://securityscorecards.dev/viewer/?uri=github.com/python/cpython) | | python | stage | minor | `3.12.12-alpine` -> `3.14.0-alpine` | | --- ### Release Notes <details> <summary>python/cpython (python)</summary> ### [`v3.14.0`](https://redirect.github.com/python/cpython/compare/v3.13.9...v3.14.0) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.9...v3.14.0) ### [`v3.13.9`](https://redirect.github.com/python/cpython/compare/v3.13.8...v3.13.9) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.8...v3.13.9) ### [`v3.13.8`](https://redirect.github.com/python/cpython/compare/v3.13.7...v3.13.8) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.7...v3.13.8) ### [`v3.13.7`](https://redirect.github.com/python/cpython/compare/v3.13.6...v3.13.7) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.6...v3.13.7) ### [`v3.13.6`](https://redirect.github.com/python/cpython/compare/v3.13.5...v3.13.6) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.5...v3.13.6) ### [`v3.13.5`](https://redirect.github.com/python/cpython/compare/v3.13.4...v3.13.5) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.4...v3.13.5) ### [`v3.13.4`](https://redirect.github.com/python/cpython/compare/v3.13.3...v3.13.4) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.3...v3.13.4) ### [`v3.13.3`](https://redirect.github.com/python/cpython/compare/v3.13.2...v3.13.3) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.2...v3.13.3) ### [`v3.13.2`](https://redirect.github.com/python/cpython/compare/v3.13.1...v3.13.2) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.1...v3.13.2) ### [`v3.13.1`](https://redirect.github.com/python/cpython/compare/v3.13.0...v3.13.1) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.13.0...v3.13.1) ### [`v3.13.0`](https://redirect.github.com/python/cpython/compare/v3.12.12...v3.13.0) [Compare Source](https://redirect.github.com/python/cpython/compare/v3.12.12...v3.13.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - Only on Sunday and Saturday ( * * * * 0,6 ) in timezone Europe/Dublin. 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/BSStudio/bss-web-file-api). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Bence Csik <[email protected]>
1 parent 6afd7cc commit 5cf8bc7

File tree

3 files changed

+358
-280
lines changed

3 files changed

+358
-280
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12.12-alpine@sha256:d82291d418d5c47f267708393e40599ae836f2260b0519dd38670e9d281657f5 AS python
1+
FROM python:3.14.0-alpine@sha256:8373231e1e906ddfb457748bfc032c4c06ada8c759b7b62d9c73ec2a3c56e710 AS python
22

33
FROM python AS builder
44

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ name = "bss-web-file-server"
33
version = "1.0.0"
44
description = "BSS file server API"
55
authors = [{ name = "Bence Csik", email = "[email protected]" }]
6-
requires-python = "==3.12.12"
6+
requires-python = "==3.14.0"
77
dependencies = [
88
"fastapi[standard-no-fastapi-cloud-cli]==0.121.1",
99
"pillow==12.0.0",
1010
# this should be part of standard-no-fastapi-cloud-cli, but is missing:
1111
"pydantic-settings==2.12.0",
12+
# for Python 3.14 compatibility:
13+
"uvloop>=0.22.0",
14+
"pydantic_core>=2.40.0",
1215
# used to health check docker compose:
1316
"requests==2.32.5",
1417
]

0 commit comments

Comments
 (0)