From 6b6b2bf16df311fc4d6f5939e23f98e8f1e476f9 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Fri, 31 Jan 2025 10:13:13 +0300 Subject: [PATCH] Remove .drone.yml I stopped using drone last year. --- .drone.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 8f038a9..0000000 --- a/.drone.yml +++ /dev/null @@ -1,43 +0,0 @@ ---- -kind: pipeline -type: docker -name: python310 - -steps: -- name: build - image: python:3.10-slim - commands: - - id - - python -V - - apt update && apt install -y gcc g++ libicu-dev pkg-config git - - pip install -r requirements-dev.txt - ---- -kind: pipeline -type: docker -name: python39 - -steps: -- name: build - image: python:3.9-slim - commands: - - id - - python -V - - apt update && apt install -y gcc g++ libicu-dev pkg-config git - - pip install -r requirements-dev.txt - ---- -kind: pipeline -type: docker -name: python38 - -steps: -- name: build - image: python:3.8-slim - commands: - - id - - python -V - - apt update && apt install -y gcc g++ libicu-dev pkg-config git - - pip install -r requirements-dev.txt - -# vim: ts=2 sw=2 et