From 50f2832dfb200bfcabb3afda93cf805a14a97ab4 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 30 Jan 2022 13:45:27 +0300 Subject: [PATCH] .drone.yml: don't test on Python 3.7 Pandas 1.4.0 now requires Python 3.8 minimum. --- .drone.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9dd75e7..7476343 100644 --- a/.drone.yml +++ b/.drone.yml @@ -26,18 +26,4 @@ steps: - apt update && apt install -y gcc g++ libicu-dev pkg-config git - pip install -r requirements-dev.txt ---- -kind: pipeline -type: docker -name: python37 - -steps: -- name: build - image: python:3.7-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