Skip to content

Commit 156cc95

Browse files
authored
Merge pull request #7 from AndreuCodina/feature/updates
Updates
2 parents 1308ced + 7ee2a67 commit 156cc95

File tree

6 files changed

+506
-482
lines changed

6 files changed

+506
-482
lines changed

.github/workflows/_deploy_api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717

1818
- name: Install uv
19-
uses: astral-sh/setup-uv@6b9c6063abd6010835644d4c2e1bef4cf5cd0fca # v6.0.1
19+
uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v6.1.0
2020
with:
2121
version: ${{ vars.UV_VERSION }}
2222

.github/workflows/_deploy_transcriber.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717

1818
- name: Install uv
19-
uses: astral-sh/setup-uv@6b9c6063abd6010835644d4c2e1bef4cf5cd0fca # v6.0.1
19+
uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v6.1.0
2020
with:
2121
version: ${{ vars.UV_VERSION }}
2222

.github/workflows/pull_request.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121

2222
- name: Install uv
23-
uses: astral-sh/setup-uv@6b9c6063abd6010835644d4c2e1bef4cf5cd0fca # v6.0.1
23+
uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v6.1.0
2424
with:
2525
version: ${{ vars.UV_VERSION }}
2626

@@ -41,9 +41,9 @@ jobs:
4141
run: uv run --frozen -- pytest -m unit
4242
shell: bash
4343

44-
- name: Integration tests
45-
run: uv run --frozen -- pytest -m integration
46-
shell: bash
44+
# - name: Integration tests
45+
# run: uv run --frozen -- pytest -m integration
46+
# shell: bash
4747

4848
deploy-api-dev:
4949
needs: continuous-integration

api/src/api/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# 0.7.3-python3.12-bookworm-slim
2-
FROM ghcr.io/astral-sh/uv@sha256:bccff1a52988d078ce51ca71fa42c02bd321eaef7ed1c4d801dad9ac8552e3a5 AS builder
1+
# 0.7.8-python3.12-bookworm-slim
2+
FROM ghcr.io/astral-sh/uv@sha256:a37c15d1474625eb986ba6b31623a2caae1da3075290bcbbafe22ff51b21de01 AS builder
33

44
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy UV_PYTHON_DOWNLOADS=0
55

@@ -11,7 +11,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
1111
uv sync --frozen --no-dev
1212

1313
# 3.12.10-slim-bookworm
14-
FROM python@sha256:31a416db24bd8ade7dac5fd5999ba6c234d7fa79d4add8781e95f41b187f4c9a AS final
14+
FROM python@sha256:fd95fa221297a88e1cf49c55ec1828edd7c5a428187e67b5d1805692d11588db AS final
1515

1616
ENV COMMON__ENVIRONMENT=""
1717

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,19 @@ dependencies = [
1818
dev = [
1919
"api",
2020
"jupyter==1.1.1",
21-
"pyright[nodejs]==1.1.400",
21+
"pyright[nodejs]==1.1.401",
2222
"pytest==8.3.5",
23-
"pytest-asyncio==0.26.0",
23+
"pytest-asyncio==1.0.0",
2424
"pytest-cov==6.1.1",
2525
"pytest-mock==3.14.0",
26-
"ruff==0.11.9",
26+
"ruff==0.11.11",
2727
"test-utils",
2828
"transcriber",
2929
]
3030

31+
[tool.uv]
32+
required-version = ">=0.7.8"
33+
3134
[tool.uv.workspace]
3235
members = ["api", "domain", "transcriber", "test_utils", "common", "scripts"]
3336

0 commit comments

Comments
 (0)