Skip to content

Commit e95e6ec

Browse files
authored
Updated python 3.8 to 3.10 in the CI (#3080)
* Updated python 3.8 to 3.10 in the CI * fix
1 parent 82688a4 commit e95e6ec

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

.github/workflows/binaries-nightly-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: conda-incubator/setup-miniconda@v2
1717
with:
1818
miniconda-version: "latest"
19-
python-version: 3.8
19+
python-version: "3.10"
2020

2121
- name: Setup nightly version
2222
run: |

.github/workflows/docker-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
4949
- uses: actions/setup-python@v4
5050
with:
51-
python-version: 3.8
51+
python-version: "3.10"
5252
- name: Build hvd hvd-base
5353
working-directory: docker
5454
run: |
@@ -86,7 +86,7 @@ jobs:
8686
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
8787
- uses: actions/setup-python@v4
8888
with:
89-
python-version: 3.8
89+
python-version: "3.10"
9090
- name: Build hvd hvd-apex
9191
working-directory: docker
9292
run: |
@@ -124,7 +124,7 @@ jobs:
124124
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
125125
- uses: actions/setup-python@v4
126126
with:
127-
python-version: 3.8
127+
python-version: "3.10"
128128
- name: Build main base
129129
working-directory: docker
130130
run: |
@@ -159,7 +159,7 @@ jobs:
159159
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
160160
- uses: actions/setup-python@v4
161161
with:
162-
python-version: 3.8
162+
python-version: "3.10"
163163
- name: Build main apex
164164
working-directory: docker
165165
run: |
@@ -194,7 +194,7 @@ jobs:
194194
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
195195
- uses: actions/setup-python@v4
196196
with:
197-
python-version: 3.8
197+
python-version: "3.10"
198198
- name: Build msdp msdp-apex
199199
working-directory: docker
200200
run: |

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: actions/setup-python@v4
1919
with:
20-
python-version: 3.8
20+
python-version: "3.10"
2121
# TODO

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-python@v4
2222
with:
23-
python-version: 3.8
23+
python-version: "3.10"
2424

2525
- run: sudo npm install katex -g
2626
- uses: actions/cache@v3
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/checkout@v4
5252
- uses: actions/setup-python@v4
5353
with:
54-
python-version: 3.8
54+
python-version: "3.10"
5555

5656
- uses: actions/cache@v3
5757
with:
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/checkout@v4
7373
- uses: actions/setup-python@v4
7474
with:
75-
python-version: 3.8
75+
python-version: "3.10"
7676

7777
- run: sudo npm install katex -g
7878
- uses: actions/cache@v3

.github/workflows/pytorch-version-tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,38 +22,38 @@ jobs:
2222
- pytorch-version: 1.4.0
2323
python-version: 3.9
2424
- pytorch-version: 1.4.0
25-
python-version: 3.10
25+
python-version: "3.10"
2626

2727
- pytorch-version: 1.5.1
2828
python-version: 3.9
2929
- pytorch-version: 1.5.1
30-
python-version: 3.10
30+
python-version: "3.10"
3131

3232
- pytorch-version: 1.6.0
3333
python-version: 3.9
3434
- pytorch-version: 1.6.0
35-
python-version: 3.10
35+
python-version: "3.10"
3636

3737
# disabling python 3.9 support with PyTorch 1.7.1 and 1.8.1, to stop repeated pytorch-version test fail.
3838
# https://github.com/pytorch/ignite/issues/2383
3939
- pytorch-version: 1.7.1
4040
python-version: 3.9
4141
- pytorch-version: 1.7.1
42-
python-version: 3.10
42+
python-version: "3.10"
4343

4444
- pytorch-version: 1.8.1
4545
python-version: 3.9
4646
- pytorch-version: 1.8.1
47-
python-version: 3.10
47+
python-version: "3.10"
4848

4949
- pytorch-version: 1.9.1
50-
python-version: 3.10
50+
python-version: "3.10"
5151

5252
- pytorch-version: 1.10.0
53-
python-version: 3.10
53+
python-version: "3.10"
5454

5555
- pytorch-version: 1.11.0
56-
python-version: 3.10
56+
python-version: "3.10"
5757

5858
steps:
5959
- uses: actions/checkout@v4

.github/workflows/stable-release-anaconda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: conda-incubator/setup-miniconda@v2
1515
with:
1616
miniconda-version: "latest"
17-
python-version: 3.8
17+
python-version: "3.10"
1818

1919
- name: Install dependencies
2020
shell: bash -l {0}

.github/workflows/stable-release-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: conda-incubator/setup-miniconda@v2
1515
with:
1616
miniconda-version: "latest"
17-
python-version: 3.8
17+
python-version: "3.10"
1818

1919
- name: Install dependencies
2020
shell: bash -l {0}
@@ -40,4 +40,4 @@ jobs:
4040
# - uses: actions/checkout@v4
4141
# - uses: actions/setup-python@v4
4242
# with:
43-
# python-version: 3.8
43+
# python-version: "3.10"

0 commit comments

Comments
 (0)