From 392b10fc9f14c49ba664d2380975f1943671ab91 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 2 Jul 2022 11:44:48 +0300 Subject: [PATCH] .drone.yml: build on Python 3.10 too --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.drone.yml b/.drone.yml index 7476343..8f038a9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,17 @@ +--- +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