Skip to content

Commit f24e9b9

Browse files
committed
Remove versions and let them automatically pick
1 parent afb2edb commit f24e9b9

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.ci/scripts/setup-linux.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ read -r BUILD_TOOL BUILD_MODE EDITABLE < <(parse_args "$@")
1616
# have already been installed, so we use PyTorch build from source here instead
1717
# of nightly. This allows CI to test against latest commits from PyTorch
1818
if [[ "${EDITABLE:-false}" == "true" ]]; then
19-
install_executorch --editable
19+
install_executorch --use-pt-pinned-commit --editable
2020
else
21-
install_executorch
21+
install_executorch --use-pt-pinned-commit
2222
fi
2323
build_executorch_runner "${BUILD_TOOL}" "${BUILD_MODE}"

.ci/scripts/wheel/post_build_script.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ set -eux
1212
# Rename pip-out directory, to avoid using shared libraries in pip-out during
1313
# smoke test.
1414
mv pip-out BACKUP-pip-out
15+
16+
pip list

.ci/scripts/wheel/pre_build_script.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ set -euxo pipefail
1515
# able to see the installed torch package.
1616

1717
"${GITHUB_WORKSPACE}/${REPOSITORY}/install_requirements.sh" --example
18+
19+
pip list

install_requirements.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ def install_optional_example_requirements(use_pytorch_nightly):
143143
check=True,
144144
)
145145

146+
146147
# Prebuilt binaries for Intel-based macOS are no longer available on PyPI; users must compile from source.
147148
# PyTorch stopped building macOS x86_64 binaries since version 2.3.0 (January 2024).
148149
def is_intel_mac_os():

requirements-examples.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ timm == 1.0.7
55
torchsr == 1.0.4
66
torchtune >= 0.6.1
77
transformers ==4.47.1
8-
torchaudio>=2.8.0,<2.9.0
9-
torchvision>=0.23.0,<0.24.0
8+
torchaudio
9+
torchvision

0 commit comments

Comments
 (0)