Skip to content

Commit 5a81930

Browse files
author
Vincent Moens
committed
[CI] Remove 3.8 jobs
ghstack-source-id: f3abf91 Pull Request resolved: #2412
1 parent e3384e2 commit 5a81930

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/benchmarks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v3
2828
- uses: actions/setup-python@v4
2929
with:
30-
python-version: 3.8
30+
python-version: 3.9
3131
- name: Setup Environment
3232
run: |
3333
python3 -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu -U
@@ -84,7 +84,7 @@ jobs:
8484
- name: Python Setup
8585
uses: actions/setup-python@v4
8686
with:
87-
python-version: 3.8
87+
python-version: 3.9
8888
- name: Setup git
8989
run: git config --global --add safe.directory /__w/rl/rl
9090
- name: setup Path

.github/workflows/benchmarks_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Python Setup
2727
uses: actions/setup-python@v4
2828
with:
29-
python-version: 3.8
29+
python-version: 3.9
3030
- name: Setup Environment
3131
run: |
3232
python3 -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu -U
@@ -95,7 +95,7 @@ jobs:
9595
- name: Python Setup
9696
uses: actions/setup-python@v4
9797
with:
98-
python-version: 3.8
98+
python-version: 3.9
9999
- name: Setup git
100100
run: git config --global --add safe.directory /__w/rl/rl
101101
- name: setup Path

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
conda activate "${env_dir}"
5151
5252
# 2. upgrade pip, ninja and packaging
53-
apt-get install python3.8 python3-pip -y
53+
apt-get install python3.9 python3-pip -y
5454
python3 -m pip install --upgrade pip
5555
python3 -m pip install setuptools ninja packaging -U
5656

.github/workflows/nightly_build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-20.04
4040
strategy:
4141
matrix:
42-
python_version: [["3.8", "cp38-cp38"], ["3.9", "cp39-cp39"], ["3.10", "cp310-cp310"], ["3.11", "cp311-cp311"], ["3.12", "cp312-cp312"]]
42+
python_version: [["3.9", "cp39-cp39"], ["3.10", "cp310-cp310"], ["3.11", "cp311-cp311"], ["3.12", "cp312-cp312"]]
4343
cuda_support: [["", "cpu", "cpu"]]
4444
container: pytorch/manylinux-${{ matrix.cuda_support[2] }}
4545
steps:
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: ubuntu-20.04
8080
strategy:
8181
matrix:
82-
python_version: [["3.8", "cp38-cp38"], ["3.9", "cp39-cp39"], ["3.10", "cp310-cp310"], ["3.11", "cp311-cp311"], ["3.12", "cp312-cp312"]]
82+
python_version: [["3.9", "cp39-cp39"], ["3.10", "cp310-cp310"], ["3.11", "cp311-cp311"], ["3.12", "cp312-cp312"]]
8383
cuda_support: [["", "cpu", "cpu"]]
8484
container: pytorch/manylinux-${{ matrix.cuda_support[2] }}
8585
steps:
@@ -110,7 +110,7 @@ jobs:
110110
runs-on: ubuntu-20.04
111111
strategy:
112112
matrix:
113-
python_version: [["3.8", "cp38-cp38"], ["3.9", "cp39-cp39"], ["3.10", "cp310-cp310"], ["3.11", "cp311-cp311"], ["3.12", "cp312-cp312"]]
113+
python_version: [["3.9", "cp39-cp39"], ["3.10", "cp310-cp310"], ["3.11", "cp311-cp311"], ["3.12", "cp312-cp312"]]
114114
cuda_support: [["", "cpu", "cpu"]]
115115
steps:
116116
- name: Setup Python
@@ -172,7 +172,7 @@ jobs:
172172
runs-on: windows-latest
173173
strategy:
174174
matrix:
175-
python_version: [["3.8", "3.8"], ["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"], ["3.12", "3.12"]]
175+
python_version: [["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"], ["3.12", "3.12"]]
176176
steps:
177177
- name: Setup Python
178178
uses: actions/setup-python@v5
@@ -205,7 +205,7 @@ jobs:
205205
runs-on: windows-latest
206206
strategy:
207207
matrix:
208-
python_version: [["3.8", "3.8"], ["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"], ["3.12", "3.12"]]
208+
python_version: [["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"], ["3.12", "3.12"]]
209209
steps:
210210
- name: Setup Python
211211
uses: actions/setup-python@v5
@@ -262,7 +262,7 @@ jobs:
262262
runs-on: windows-latest
263263
strategy:
264264
matrix:
265-
python_version: [["3.8", "3.8"], ["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"], ["3.12", "3.12"]]
265+
python_version: [["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"], ["3.12", "3.12"]]
266266
steps:
267267
- name: Checkout torchrl
268268
uses: actions/checkout@v3

.github/workflows/test-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
tests-cpu:
2323
strategy:
2424
matrix:
25-
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
25+
python_version: ["3.9", "3.10", "3.11", "3.12"]
2626
fail-fast: false
2727
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
2828
with:
@@ -155,7 +155,7 @@ jobs:
155155
tests-optdeps:
156156
strategy:
157157
matrix:
158-
python_version: ["3.10"] # "3.8", "3.9", "3.10", "3.11"
158+
python_version: ["3.10"] # "3.9", "3.10", "3.11"
159159
cuda_arch_version: ["12.1"] # "11.6", "11.7"
160160
fail-fast: false
161161
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
@@ -193,7 +193,7 @@ jobs:
193193
tests-stable-gpu:
194194
strategy:
195195
matrix:
196-
python_version: ["3.10"] # "3.8", "3.9", "3.10", "3.11"
196+
python_version: ["3.10"] # "3.9", "3.10", "3.11"
197197
cuda_arch_version: ["11.8"] # "11.6", "11.7"
198198
fail-fast: false
199199
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main

.github/workflows/wheels-legacy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: windows-latest
2020
strategy:
2121
matrix:
22-
python_version: [["3.8", "3.8"], ["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"], ["3.12", "3.12"]]
22+
python_version: [["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"], ["3.12", "3.12"]]
2323
steps:
2424
- name: Setup Python
2525
uses: actions/setup-python@v2
@@ -51,7 +51,7 @@ jobs:
5151
needs: build-wheel-windows
5252
strategy:
5353
matrix:
54-
python_version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
54+
python_version: ["3.9", "3.10", "3.11", "3.12" ]
5555
runs-on: windows-latest
5656
steps:
5757
- name: Setup Python

0 commit comments

Comments
 (0)