csv-metadata-quality-web/.drone.yml
Alan Orth 50f2832dfb
.drone.yml: don't test on Python 3.7
Pandas 1.4.0 now requires Python 3.8 minimum.
2022-01-30 13:45:27 +03:00

30 lines
490 B
YAML

---
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