Skip to content

Commit 113e859

Browse files
author
pytorchbot
committed
2025-09-11 nightly release (f0a4999)
1 parent 53ecec0 commit 113e859

File tree

10 files changed

+7
-248
lines changed

10 files changed

+7
-248
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ignore = E203,E402,E741,W503
66

77
# Note: exclude is not honnored when flake8 is executed from pre-commit.
88
# pre-commit has a separate config
9-
exclude = build,docs/src,third_party
9+
exclude = build,docs/src
1010

1111
per-file-ignores =
1212
examples/tutorials/*.py: E501

.github/scripts/unittest-linux/run_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ conda activate ci
99
python -m torch.utils.collect_env
1010
env | grep TORCHAUDIO || true
1111

12-
export PATH="${PWD}/third_party/install/bin/:${PATH}"
1312

1413
declare -a args=(
1514
'--continue-on-collection-errors'

.github/workflows/unittest-linux-cpu.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ jobs:
4343
export UPLOAD_CHANNEL=nightly
4444
fi
4545
46-
export PATH="${PWD}/third_party/install/bin/:${PATH}"
4746
export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true
4847
export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true
4948
export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true

.github/workflows/unittest-linux-gpu.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ jobs:
8181
8282
echo "::endgroup::"
8383
echo "::group::Run tests"
84-
export PATH="${PWD}/third_party/install/bin/:${PATH}"
8584
8685
declare -a args=(
8786
'-v'

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,3 @@ examples/interactive_asr/data/*.txt
127127
examples/interactive_asr/data/*.model
128128
examples/interactive_asr/data/*.pt
129129
examples/tutorials/_assets
130-
131-
# third parties
132-
third_party/install/
133-
third_party/archives/

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repos:
3030
hooks:
3131
- id: flake8
3232
args: ['src', 'test', 'tools', 'docs/source/conf.py', 'examples']
33-
exclude: 'build|docs/src|third_party'
33+
exclude: 'build|docs/src'
3434
additional_dependencies:
3535
- flake8-breakpoint == 1.1.0
3636
- flake8-bugbear == 22.6.22
@@ -43,4 +43,4 @@ repos:
4343
rev: 6.3.0
4444
hooks:
4545
- id: pydocstyle
46-
exclude: 'build|test|examples|third_party|docs|tools'
46+
exclude: 'build|test|examples|docs|tools'

src/torchaudio/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def load(
3636
https://docs.pytorch.org/torchcodec/stable/generated/torchcodec.decoders.AudioDecoder.
3737
Because of the reliance on Torchcodec, the parameters ``normalize``, ``buffer_size``, and
3838
``backend`` are ignored and accepted only for backwards compatibility.
39+
To install torchcodec, follow the instructions at https://github.com/pytorch/torchcodec#installing-torchcodec.
3940
4041
4142
Args:
@@ -118,6 +119,7 @@ def save(
118119
Because of the reliance on Torchcodec, the parameters ``format``, ``encoding``,
119120
``bits_per_sample``, ``buffer_size``, and ``backend``, are ignored and accepted only for
120121
backwards compatibility.
122+
To install torchcodec, follow the instructions at https://github.com/pytorch/torchcodec#installing-torchcodec.
121123
122124
Args:
123125
uri (path-like object):

src/torchaudio/_torchcodec.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def load_with_torchcodec(
3030
:func:`~torchaudio.load_with_torchcodec`. Note that some parameters of
3131
:func:`~torchaudio.load`, like ``normalize``, ``buffer_size``, and
3232
``backend``, are ignored by :func:`~torchaudio.load_with_torchcodec`.
33+
To install torchcodec, follow the instructions at https://github.com/pytorch/torchcodec#installing-torchcodec.
3334
3435
3536
Args:
@@ -180,6 +181,7 @@ def save_with_torchcodec(
180181
:func:`~torchaudio.save`, like ``format``, ``encoding``,
181182
``bits_per_sample``, ``buffer_size``, and ``backend``, are ignored by
182183
are ignored by :func:`~torchaudio.save_with_torchcodec`.
184+
To install torchcodec, follow the instructions at https://github.com/pytorch/torchcodec#installing-torchcodec.
183185
184186
This function provides a TorchCodec-based alternative to torchaudio.save
185187
with the same API. TorchCodec's AudioEncoder provides efficient encoding

third_party/ffmpeg/multi/CMakeLists.txt

Lines changed: 0 additions & 198 deletions
This file was deleted.

third_party/ffmpeg/single/CMakeLists.txt

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)