Skip to content

Commit 72c7428

Browse files
authored
⬆️ UV upgrade to 0.5 (ITISFoundation#7058)
1 parent eb35a48 commit 72c7428

File tree

29 files changed

+33
-52
lines changed

29 files changed

+33
-52
lines changed

Diff for: .github/dependabot.yml

+6-23
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ updates:
1111
- sanderegg
1212
assignees:
1313
- pcrespov
14+
- sanderegg
15+
labels:
16+
- t:maintenance
1417
ignore:
1518
- dependency-name: docker-compose
1619
versions:
@@ -26,32 +29,10 @@ updates:
2629
- dependency-name: httpx
2730
versions:
2831
- 0.17.0
29-
- package-ecosystem: pip
30-
directory: "/packages/service-library"
31-
schedule:
32-
interval: weekly
33-
time: "04:00"
34-
open-pull-requests-limit: 10
35-
reviewers:
36-
- pcrespov
37-
- sanderegg
38-
assignees:
39-
- pcrespov
40-
ignore:
4132
- dependency-name: openapi-core
4233
versions:
4334
- "> 0.12.0, < 1"
44-
- package-ecosystem: pip
45-
directory: "/packages/postgres-database"
46-
schedule:
47-
interval: weekly
48-
time: "04:00"
49-
open-pull-requests-limit: 10
50-
reviewers:
51-
- pcrespov
52-
- sanderegg
53-
assignees:
54-
- pcrespov
35+
5536
- package-ecosystem: "github-actions"
5637
directory: "/"
5738
schedule:
@@ -62,3 +43,5 @@ updates:
6243
- pcrespov
6344
assignees:
6445
- sanderegg
46+
labels:
47+
- t:maintenance

Diff for: .github/workflows/ci-testing-deploy.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1730,15 +1730,13 @@ jobs:
17301730
matrix:
17311731
python: ["3.11"]
17321732
os: [ubuntu-22.04]
1733-
docker_buildx: [v0.10.4]
17341733
fail-fast: false
17351734
steps:
17361735
- uses: actions/checkout@v4
17371736
- name: setup docker buildx
17381737
id: buildx
17391738
uses: docker/setup-buildx-action@v3
17401739
with:
1741-
version: ${{ matrix.docker_buildx }}
17421740
driver: docker-container
17431741
- name: setup python environment
17441742
uses: actions/setup-python@v5

Diff for: packages/postgres-database/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22
ARG PYTHON_VERSION="3.11.9"
3-
ARG UV_VERSION="0.4"
3+
ARG UV_VERSION="0.5"
44
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
55
# we docker image is built based on debian
66
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: packages/postgres-database/scripts/erd/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: packages/service-integration/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: requirements/tools/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
#
1111
ARG PYTHON_VERSION="3.11.9"
12-
ARG UV_VERSION="0.4"
12+
ARG UV_VERSION="0.5"
1313
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
1414
# we docker image is built based on debian
1515
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: scripts/erd/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99

1010
ARG PYTHON_VERSION="3.11.9"
11-
ARG UV_VERSION="0.4"
11+
ARG UV_VERSION="0.5"
1212
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
1313
# we docker image is built based on debian
1414
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: scripts/maintenance/migrate_project/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
ARG UV_VERSION="0.4"
2+
ARG UV_VERSION="0.5"
33
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
44
# we docker image is built based on debian
55
FROM python:3.11.9-buster

Diff for: scripts/openapi/oas_resolver/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Usage:
33
# docker build . -t oas_resolver
44
# docker run -v /path/to/api:/input -v /path/to/compiled/file:/output oas_resolver /input/path/to/openapi.yaml /output/output_file.yaml
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:3.6-alpine

Diff for: scripts/pydeps-docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
#
1111
ARG PYTHON_VERSION="3.11.9"
12-
ARG UV_VERSION="0.4"
12+
ARG UV_VERSION="0.5"
1313
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
1414
# we docker image is built based on debian
1515
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/agent/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66

77
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
88
# we docker image is built based on debian

Diff for: services/api-server/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/autoscaling/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/catalog/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/clusters-keeper/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/dask-sidecar/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM --platform=${TARGETPLATFORM} python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/datcore-adapter/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/director-v2/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/dynamic-scheduler/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/dynamic-sidecar/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/efs-guardian/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/invitations/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/migration/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/payments/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/resource-usage-tracker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/storage/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: services/web/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

Diff for: tests/performance/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
ARG PYTHON_VERSION="3.11.9"
4-
ARG UV_VERSION="0.4"
4+
ARG UV_VERSION="0.5"
55
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
66
FROM python:${PYTHON_VERSION}-slim-bookworm AS base
77

0 commit comments

Comments
 (0)