Skip to content

Commit 086a3b6

Browse files
committed
Install Python 3.10 in CI venvs
1 parent 5e297a6 commit 086a3b6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
steps:
99
- uses: actions/checkout@v3
1010
- uses: actions/setup-python@v3
11+
with:
12+
python-version: '3.10'
1113
- name: Install dependencies
1214
run: |
1315
pip install sphinx sphinx_rtd_theme

.github/workflows/pythonapp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v2
22-
- name: Set up Python 3.8
22+
- name: Set up Python 3.10
2323
uses: actions/setup-python@v1
2424
with:
25-
python-version: 3.8
25+
python-version: '3.10'
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)