Skip to content

Commit 4e5a968

Browse files
committed
Use Python 3.8 in more points of the pipeline and doc
1 parent 8a33374 commit 4e5a968

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-python@v2
1414
with:
15-
python-version: '3.9'
15+
python-version: '3.8'
1616
- uses: pre-commit/action@v2.0.3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
ref: main
1818
- uses: actions/setup-python@v2
1919
with:
20-
python-version: 3.9
20+
python-version: 3.8
2121
- name: Install pypa/build
2222
run: python -m pip install build --user
2323
- name: Build binary wheel and source tarball

.github/workflows/verify-docs-gen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Setup Python 3.9
14+
- name: Setup Python 3.8
1515
uses: actions/setup-python@v2
1616
with:
17-
python-version: '3.9'
17+
python-version: '3.8'
1818
- name: Full dependencies
1919
run: |
2020
# up to k2 compatible torch version

docs/installation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ SpeechBrain is constantly evolving. New features, tutorials, and documentation w
55

66
SpeechBrain supports both CPU and GPU computation. For most recipes, however, a GPU is necessary during training. Please note that CUDA must be properly installed to use GPUs.
77

8-
We support [PyTorch](https://pytorch.org/get-started/locally/) 1.9+ and Python 3.9-3.12 (newer Python versions than advertized may work if supported by PyTorch).
8+
We support [PyTorch](https://pytorch.org/get-started/locally/) 1.9+ and Python 3.8-3.12 (newer Python versions than advertised may work if supported by PyTorch).
9+
We recommend you upgrade to at least 3.9+ as support for 3.8 will be removed eventually.
910

1011
## Install via PyPI
1112

0 commit comments

Comments
 (0)