Skip to content

Commit 391b109

Browse files
Update examples.yml
1 parent 85ca089 commit 391b109

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macOS-latest]
16-
Python: [3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
16+
Python: [3.8, 3.9, 3.10, 3.11, 3.12]
1717
runs-on: ${{matrix.os}}
1818
env:
1919
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
@@ -24,7 +24,7 @@ jobs:
2424
distribution: 'adopt'
2525
- uses: actions/setup-python@v4
2626
with:
27-
python-version: ${{matrix.Python}}
27+
python-version: '${{matrix.Python}}'
2828
- run: pip3 install --upgrade pip
2929
shell: bash
3030
- run: mkdir ${{matrix.os}}-Python${{matrix.Python}}
@@ -49,5 +49,5 @@ jobs:
4949
- uses: actions/upload-artifact@v4
5050
if: ${{ always() }}
5151
with:
52-
name: artifact-${{ matrix.os }}
52+
name: artifact-${{matrix.os}}-Python${{matrix.Python}}
5353
path: ./${{matrix.os}}-*

0 commit comments

Comments
 (0)