Skip to content

Commit 6416d26

Browse files
committed
Try building docs with python 3.10
1 parent 5f2d021 commit 6416d26

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/setup-python@v2
2727
with:
28-
python-version: 3.8
28+
python-version: "3.10"
2929

3030
- name: Install dependencies
3131
run: |
@@ -57,7 +57,7 @@ jobs:
5757

5858
- uses: actions/setup-python@v2
5959
with:
60-
python-version: 3.8
60+
python-version: "3.10"
6161

6262
- name: Build
6363
run: |

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: actions/setup-python@v2
1818
with:
19-
python-version: 3.8
19+
python-version: "3.10"
2020

2121
- name: Install dependencies
2222
run: |
@@ -64,7 +64,7 @@ jobs:
6464
run: pytest --cov=atomate2 --cov-report=xml
6565

6666
- uses: codecov/codecov-action@v1
67-
if: matrix.python-version == 3.8 && github.repository == 'materialsproject/atomate2'
67+
if: matrix.python-version == "3.10" && github.repository == 'materialsproject/atomate2'
6868
with:
6969
token: ${{ secrets.CODECOV_TOKEN }}
7070
file: ./coverage.xml
@@ -80,7 +80,7 @@ jobs:
8080

8181
- uses: actions/setup-python@v2
8282
with:
83-
python-version: 3.8
83+
python-version: "3.10"
8484

8585
- name: Install dependencies
8686
run: |

0 commit comments

Comments
 (0)