Skip to content

Commit 30ff7a5

Browse files
committed
Specify Python version for all jobs
1 parent 009423b commit 30ff7a5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ch07-packaging.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
- uses: actions/checkout@v2
1212

1313
- uses: actions/setup-python@v2
14+
with:
15+
python-version: "3.10"
1416

1517
- name: Install tox
1618
run: python -m pip install tox
@@ -26,6 +28,8 @@ jobs:
2628
- uses: actions/checkout@v2
2729

2830
- uses: actions/setup-python@v2
31+
with:
32+
python-version: "3.10"
2933

3034
- name: Install tox
3135
run: python -m pip install tox
@@ -82,6 +86,8 @@ jobs:
8286
- uses: actions/checkout@v2
8387

8488
- uses: actions/setup-python@v2
89+
with:
90+
python-version: "3.10"
8591

8692
- name: Install build
8793
run: python -m pip install build
@@ -105,6 +111,8 @@ jobs:
105111
- uses: actions/checkout@v2
106112

107113
- uses: actions/setup-python@v2
114+
with:
115+
python-version: "3.10"
108116

109117
- name: Install cibuildwheel
110118
run: python -m pip install cibuildwheel==2.3.1

0 commit comments

Comments
 (0)