From f144f0379e5e02b0c8f0f2651767c1986000233c Mon Sep 17 00:00:00 2001 From: David Gnedt Date: Wed, 15 May 2024 23:47:04 +0200 Subject: [PATCH] CI: Temporarily disable Python 3.5 on Ubuntu 20.04 due to TLS error with PyPI during pip upgrade Could not fetch URL https://pypi.python.org/simple/pip/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:728) - skipping --- .github/workflows/ci-python3.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-python3.yml b/.github/workflows/ci-python3.yml index 6fcb6a7..26c32d5 100644 --- a/.github/workflows/ci-python3.yml +++ b/.github/workflows/ci-python3.yml @@ -26,6 +26,8 @@ jobs: python-version: [ '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ] # Exclude unsupported OS/Python version combinations exclude: + - os: ubuntu-20.04 + python-verson: '3.5' - os: ubuntu-22.04 python-version: '3.5' - os: ubuntu-22.04