From dea25289c0868f666992a5a99c2a560493826fcd Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Sun, 11 Sep 2022 19:35:12 +0000 Subject: [PATCH] Revert "Use a new image for poetry on drone" This reverts commit d89ef58515bf0da232215f572472b24145ae569c. --- .drone.yml | 6 ++++-- renovate.json | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 81e77e8..7ef5212 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,8 +4,9 @@ type: docker steps: - name: lint - image: fnndsc/python-poetry + image: python:3.8-slim commands: + - pip install poetry - poetry install - poetry run flake8 . - poetry run mypy . @@ -22,8 +23,9 @@ steps: from_secret: docker_password - name: publish - image: fnndsc/python-poetry + image: python:3.8-slim commands: + - pip install poetry - poetry publish --build environment: POETRY_PYPI_TOKEN_PYPI: diff --git a/renovate.json b/renovate.json index 7190a60..1581c34 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,4 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json" + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "ignorePaths": [".drone.yml"] }