From 122568ac0cc6f979998f836e6d0ef1c0149d2b1f Mon Sep 17 00:00:00 2001 From: moto <855818+mthrok@users.noreply.github.com> Date: Fri, 25 Mar 2022 14:28:07 -0700 Subject: [PATCH 1/2] Update README around version compatibility matrix 1. move older versions to details 2. Add note about LTS being in a different channel than the regular one. --- README.md | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 75b879f334..2e92af5a01 100644 --- a/README.md +++ b/README.md @@ -31,10 +31,16 @@ Dependencies The following are the corresponding ``torchaudio`` versions and supported Python versions. +| | ``torch`` | ``torchaudio`` | ``python`` | +| ----------- | ------------------------ | ------------------------ | ------------------------------- | +| Development | ``master`` / ``nightly`` | ``main`` / ``nightly`` | ``>=3.7``, ``<=3.9`` | +| Latest versioned release | ``1.11.0`` | ``0.11.0`` | ``>=3.7``, ``<=3.9`` | +| LTS | ``1.8.2`` | ``0.8.2`` | ``>=3.6``, ``<=3.9`` | + +
Previous versions + | ``torch`` | ``torchaudio`` | ``python`` | | ------------------------ | ------------------------ | ------------------------------- | -| ``master`` / ``nightly`` | ``main`` / ``nightly`` | ``>=3.7``, ``<=3.9`` | -| ``1.11.0`` | ``0.11.0`` | ``>=3.7``, ``<=3.9`` | | ``1.10.0`` | ``0.10.0`` | ``>=3.6``, ``<=3.9`` | | ``1.9.1`` | ``0.9.1`` | ``>=3.6``, ``<=3.9`` | | ``1.9.0`` | ``0.9.0`` | ``>=3.6``, ``<=3.9`` | @@ -46,18 +52,21 @@ The following are the corresponding ``torchaudio`` versions and supported Python | ``1.5.0`` | ``0.5.0`` | ``>=3.5``, ``<=3.8`` | | ``1.4.0`` | ``0.4.0`` | ``==2.7``, ``>=3.5``, ``<=3.8`` | +
Installation ------------ -### Binary Distributions (stable and nightly) +### Binary Distributions `torchaudio` has binary distributions for PyPI (`pip`) and Anaconda (`conda`). -Starting `0.10`, torchaudio has CPU-only and CUDA-enabled binary distributions, each of which requires a matching PyTorch version. - Please refer to https://pytorch.org/get-started/locally/ for the details. +**Note** Starting `0.10`, torchaudio has CPU-only and CUDA-enabled binary distributions, each of which requires a matching PyTorch version. + +**Note** LTS versions are distributed through a different channel than the other versioned releases. Please refer to the above page for the detail. + ### From Source On non-Windows platforms, the build process builds libsox and codecs that torchaudio need to link to. It will fetch and build libmad, lame, flac, vorbis, opus, and libsox before building extension. This process requires `cmake` and `pkg-config`. libsox-based features can be disabled with `BUILD_SOX=0`. From 963e8c0355ceaaa9fa6c04e2801dacec74530536 Mon Sep 17 00:00:00 2001 From: moto <855818+mthrok@users.noreply.github.com> Date: Fri, 25 Mar 2022 15:15:23 -0700 Subject: [PATCH 2/2] Update README.md Co-authored-by: Caroline Chen --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e92af5a01..de601db8aa 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Please refer to https://pytorch.org/get-started/locally/ for the details. **Note** Starting `0.10`, torchaudio has CPU-only and CUDA-enabled binary distributions, each of which requires a matching PyTorch version. -**Note** LTS versions are distributed through a different channel than the other versioned releases. Please refer to the above page for the detail. +**Note** LTS versions are distributed through a different channel than the other versioned releases. Please refer to the above page for details. ### From Source