From a918ce29b5dd16f9e79f53916fee9f501e53ca52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 5 Jan 2023 13:33:27 +0100 Subject: [PATCH] run tests on ubuntu-20.04 and remove Python 3.4, since that's no longer available on this test runner --- .github/workflows/tests.yml | 4 ++-- gallery_dl/extractor/common.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0fbbfa12..6f9b317f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,11 +11,11 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: - python-version: ["3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"] + python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"] steps: - uses: actions/checkout@v3 diff --git a/gallery_dl/extractor/common.py b/gallery_dl/extractor/common.py index ad766dad..4352aa71 100644 --- a/gallery_dl/extractor/common.py +++ b/gallery_dl/extractor/common.py @@ -327,7 +327,6 @@ class Extractor(): except Exception as exc: self.log.warning("cookies: %s", exc) else: - self.log.debug("Loading cookies from '%s'", cookies) self._cookiefile = cookiefile elif isinstance(cookies, (list, tuple)):