From a4f0f4a8f04138cabfdde8282f6ba8a1bb752143 Mon Sep 17 00:00:00 2001 From: gstarovo Date: Wed, 29 May 2024 16:04:47 +0200 Subject: [PATCH] python3.5 set env downloaded cert --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44ed1c92..2a6bbaf1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -243,13 +243,12 @@ jobs: python-version: ${{ matrix.python-version }} - name: Set up Python 3.5 with pip env if: ${{ matrix.python-version == '3.5' }} - env: - # wget -O cert.crt https://crt.sh/?d=443850 - # PIP_CERT: ${{ cert.crt }} - pip install certifi uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + env: + wget -O cert.crt https://crt.sh/?d=443850 + PIP_CERT: ${{ cert.crt }} - name: Ensure python 2.7 if: matrix.python-version == '2.7' run: |