Skip to content

Commit 0ad38dd

Browse files
authored
fix(deps): Update python Docker tag to v3.13 (#251)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | python | final | minor | `3.12-slim` -> `3.13-slim` | --- ### Configuration πŸ“… **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
1 parent 040dc2b commit 0ad38dd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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-slim
1+
FROM python:3.13-slim
22

33
WORKDIR /app
44

β€Žcloudquery/sdk/serve/plugin.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def run_docker_cmd(cmd, plugin_dir):
329329
err = (
330330
""
331331
if result.stderr is None
332-
else result.stderr.decode("ascii").strip()
332+
else result.stderr.decode("utf-8").strip()
333333
)
334334
raise ChildProcessError("Unable to run Docker command: %s" % err)
335335

β€Žsetup.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"pandas==2.2.3",
2424
"pluggy==1.5.0",
2525
"protobuf==5.28.3",
26-
"pyarrow==17.0.0",
26+
"pyarrow==18.0.0",
2727
"pytest==8.3.3",
2828
"python-dateutil>=2.8.1",
2929
"pytz==2024.2",

0 commit comments

Comments
Β (0)