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.13 #1133

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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 .github/workflows/style-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
[tools]
"pipx:black" = "24.10"
"pipx:isort" = "5.13"
python = "3.12"
python = "3.13"
uv = "0.4"

[settings]
Expand Down
2 changes: 1 addition & 1 deletion .mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ kind = "0.24"
kubectl = "1.31"
poetry = { version = "1.8", pyproject = "pyproject.toml" }
pre-commit = "4.0"
python = "3.12"
python = "3.13"
tilt = "0.33"
usage = "latest"

Expand Down
9 changes: 3 additions & 6 deletions app/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 app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mourits de Beer <[email protected]>"]
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"

aiohttp = "~3.10.5"
aries-cloudcontroller = "==1.0.1b0"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/endorser/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim
FROM python:3.13-slim

WORKDIR /endorser

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/fastapi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim
FROM python:3.13-slim

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim
FROM python:3.13-slim

WORKDIR /tests

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/trustregistry/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim
FROM python:3.13-slim

WORKDIR /trustregistry

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/waypoint/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim
FROM python:3.13-slim

WORKDIR /waypoint

Expand Down
9 changes: 3 additions & 6 deletions endorser/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 endorser/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mourits de Beer <[email protected]>"]
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"

aries-cloudcontroller = "==1.0.1b0"
dependency-injector-fork = "~=4.42.1" # https://github.com/ets-labs/python-dependency-injector/pull/765#issuecomment-1915100744
Expand Down
96 changes: 3 additions & 93 deletions trustregistry/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 trustregistry/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mourits de Beer <[email protected]>"]
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"

fastapi = "~0.115.0"
httpx = "~0.27.0"
Expand Down
9 changes: 3 additions & 6 deletions waypoint/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 waypoint/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["cl0ete <[email protected]>"]
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"

aiohttp = "~3.10.5"
dependency-injector-fork = "~=4.42.1"
Expand Down
Loading