Skip to content

Commit

Permalink
Restrict python to 3.11 due to invokeAI requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
H3mul committed Oct 22, 2024
1 parent e2adf6e commit 5b953fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
'.github/**',
'Dockerfile'
],
packageRules: [
{
matchDatasources: ["docker"],
matchPackageNames: ["python"],
allowedVersions: "<3.12"
}
],
customManagers: [
{
customType: 'regex',
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Required by InvokeAI (<3.12)
# https://github.com/invoke-ai/InvokeAI/blob/bbd89d54b48397c65edc32fbdaa07564eee33298/pyproject.toml#L8C21-L8C34

FROM python:3.13@sha256:a31cbb4db18c6f09e3300fa85b77f6d56702501fcb9bdb8792ec702a39ba6200
FROM python:3.11

SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ENV DEBIAN_FRONTEND=noninteractive \
Expand Down

0 comments on commit 5b953fa

Please sign in to comment.