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"] }