From 391b1092092f91e64eee9f913a6e819d67d0dfe7 Mon Sep 17 00:00:00 2001 From: Yann Richet Date: Thu, 28 Nov 2024 10:48:39 +0100 Subject: [PATCH] Update examples.yml --- .github/workflows/examples.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 437b99b..9d0b3f9 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - Python: [3.7, 3.8, 3.9, 3.10, 3.11, 3.12] + Python: [3.8, 3.9, 3.10, 3.11, 3.12] runs-on: ${{matrix.os}} env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} @@ -24,7 +24,7 @@ jobs: distribution: 'adopt' - uses: actions/setup-python@v4 with: - python-version: ${{matrix.Python}} + python-version: '${{matrix.Python}}' - run: pip3 install --upgrade pip shell: bash - run: mkdir ${{matrix.os}}-Python${{matrix.Python}} @@ -49,5 +49,5 @@ jobs: - uses: actions/upload-artifact@v4 if: ${{ always() }} with: - name: artifact-${{ matrix.os }} + name: artifact-${{matrix.os}}-Python${{matrix.Python}} path: ./${{matrix.os}}-*