From 76431bcfbd5f5a48f6ec619b6c4049e32fe97776 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 7 Jan 2022 09:57:03 +0100 Subject: [PATCH] sudo apt-get install -y libcurl4-openssl-dev # pycurl --- .github/workflows/lint_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 4071437..1dc8e18 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -16,7 +16,7 @@ jobs: - run: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --show-source --statistics - run: isort --check-only --profile black . || true - - run: apt-get install -y libcurl4-openssl-dev # pycurl + - run: sudo apt-get install -y libcurl4-openssl-dev # pycurl - run: pip install -r requirements.txt - run: mkdir --parents --verbose .mypy_cache - run: mypy --ignore-missing-imports --install-types --non-interactive . || true