Skip to content

Commit

Permalink
fix(deps): Update python Docker tag to v3.13 (#251)
Browse files Browse the repository at this point in the history
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=-->
  • Loading branch information
cq-bot authored Nov 4, 2024
1 parent 040dc2b commit 0ad38dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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 cloudquery/sdk/serve/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def run_docker_cmd(cmd, plugin_dir):
err = (
""
if result.stderr is None
else result.stderr.decode("ascii").strip()
else result.stderr.decode("utf-8").strip()
)
raise ChildProcessError("Unable to run Docker command: %s" % err)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"pandas==2.2.3",
"pluggy==1.5.0",
"protobuf==5.28.3",
"pyarrow==17.0.0",
"pyarrow==18.0.0",
"pytest==8.3.3",
"python-dateutil>=2.8.1",
"pytz==2024.2",
Expand Down

0 comments on commit 0ad38dd

Please sign in to comment.