Skip to content

Commit 7834066

Browse files
authored
Merge pull request #448 from roboflow/fix-publish
Fix Python Version in Publish CI
2 parents e010156 + 19ef812 commit 7834066

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,15 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
python-version: [3.8]
1310
steps:
1411
- name: 🛎️ Checkout
1512
uses: actions/checkout@v4
1613
with:
1714
ref: ${{ github.head_ref }}
18-
- name: 🐍 Set up Python ${{ matrix.python-version }}
15+
- name: 🐍 Set up Python
1916
uses: actions/setup-python@v5
2017
with:
21-
python-version: ${{ matrix.python-version }}
18+
python-version: '3.10'
2219
- name: 🦾 Install dependencies
2320
run: |
2421
python -m pip install --upgrade pip
@@ -45,7 +42,7 @@ jobs:
4542
- name: 🐍 Set up Python
4643
uses: actions/setup-python@v5
4744
with:
48-
python-version: '3.8'
45+
python-version: '3.10'
4946

5047
- name: 📚 Install MkDocs and dependencies
5148
run: |

0 commit comments

Comments
 (0)