Skip to content

Commit fe46882

Browse files
authored
Merge pull request #90 from andresdelfino/install_python310_in_venvs
Install Python 3.10 in CI venvs
2 parents f105813 + ea0df2d commit fe46882

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
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@v4
1010
- uses: actions/setup-python@v5
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@v4
22-
- name: Set up Python 3.8
22+
- name: Set up Python 3.10
2323
uses: actions/setup-python@v5
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

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.9"
6+
python: "3.10"
77

88
python:
99
install:

0 commit comments

Comments
 (0)