Skip to content

Commit 8bc5839

Browse files
committed
chore: bump dependencies
1 parent a56b332 commit 8bc5839

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/build-test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
2222

2323
- name: Build the package
24-
run: uv build
24+
run: uv build --python 3.13
2525

2626
- name: List built artifacts
2727
run: ls -la dist/
2828

2929
- name: Install the built wheel
3030
run: |
31-
uv venv
31+
uv venv --python 3.13
3232
# Find the wheel file and install it
3333
WHEEL_FILE=$(ls dist/*.whl | head -1)
3434
echo "Installing wheel: $WHEEL_FILE"
@@ -64,7 +64,6 @@ jobs:
6464
docker: ${{ steps.docker-changes.outputs.docker }}
6565
workflow: ${{ steps.docker-changes.outputs.workflow }}
6666

67-
6867
test-docker-build:
6968
needs: [should-test-docker-build]
7069
name: Test Docker build
@@ -92,4 +91,3 @@ jobs:
9291
push: false
9392
platforms: linux/amd64,linux/arm64
9493
cache-from: type=registry,ref=ghcr.io/elementsinteractive/lightman-ai:buildcache
95-

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
2020

2121
- name: Install the project
22-
run: uv sync --locked --group lint --group test --all-extras
22+
run: uv sync --locked --group lint --group test --all-extras --python 3.13
2323

2424
- name: Cache mypy cache
2525
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.1

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
2020

2121
- name: Install the project
22-
run: uv sync --locked --group test --all-extras
22+
run: uv sync --locked --group test --all-extras --python 3.13
2323

2424
- name: Run tests
2525
run: uv run pytest tests

0 commit comments

Comments
 (0)