Skip to content

Commit acb7f17

Browse files
authored
Merge pull request #107 from easyscience/develop
Fix for setup-python@v5 expecting string now
2 parents c7e2ec4 + d0a7f75 commit acb7f17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/documentation-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@v5
3434
with:
35-
python-version: 3.10
35+
python-version: '3.10'
3636
- name: Install Pandoc, repo and dependencies
3737
run: |
3838
sudo apt install pandoc

.github/workflows/python-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
- uses: actions/setup-python@v5
7373
with:
74-
python-version: 3.11
74+
python-version: '3.11'
7575

7676
- name: Install dependencies and build
7777
run: |

.github/workflows/python-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: actions/setup-python@v5
3030
with:
31-
python-version: 3.10
31+
python-version: '3.10'
3232

3333
- name: Install dependencies and build
3434
run: |

0 commit comments

Comments
 (0)