From 804e15d76415d4069c881dc7b4e6f3ca7a813331 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Fri, 24 Oct 2025 21:34:56 +0100 Subject: [PATCH] Update .drone.yml remove run on push, bump image to 3.13 --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index ac81a3c..01ab1ca 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,11 +4,11 @@ type: docker name: python-ci trigger: - event: [ push, pull_request ] + event: [ pull_request ] steps: - name: setup+deps - image: python:3.12-slim + image: python:3.13-slim environment: UV_NO_SYNC_PROGRESS: "1" commands: @@ -32,7 +32,7 @@ steps: - uv pip install pytest pytest-cov mypy ruff - name: lint-typecheck - image: python:3.12-slim + image: python:3.13-slim commands: - export PATH="$HOME/.local/bin:$PATH" - . .venv/bin/activate @@ -40,7 +40,7 @@ steps: - mypy --ignore-missing-imports . - name: test - image: python:3.12-slim + image: python:3.13-slim commands: - export PATH="$HOME/.local/bin:$PATH" - . .venv/bin/activate