Skip to content

Commit 7263827

Browse files
TroyGardenfacebook-github-bot
authored andcommitted
fix PYPI classifiers and upgrade cuda/python version in release build (#3051)
Summary: Pull Request resolved: #3051 # context * PYPI upload failed due to classifer standard updated: https://pypi.org/classifiers/ ``` # previous: Development Status :: 5 - Stable # now: Development Status :: 5 - Production/Stable ``` * add python version 3.13 * upgrade cuda version from 12.4 to 12.6, to be consistent with fbgemm and nightly build * sanity_check_on_gpu_and_push (linux.g5.12xlarge.nvidia.gpu, 3.13, cu126) ``` Uploading distributions to https://upload.pypi.org/legacy/ Uploading torchrec-1.2.0-py313-none-any.whl 25l 0% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/706.7 kB • --:-- • ? 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 706.7/706.7 kB • 00:00 • 14.7 MB/s 25h View at: https://pypi.org/project/torchrec/1.2.0/ ``` Reviewed By: aliafzal Differential Revision: D76136049 fbshipit-source-id: c337c5e0d47d13719262136b269e7d2e96e6564a
1 parent 7cfe421 commit 7263827

File tree

4 files changed

+208
-194
lines changed

4 files changed

+208
-194
lines changed

.github/scripts/validate_binaries.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ conda create -y -n "${CONDA_ENV}" python="${MATRIX_PYTHON_VERSION}"
130130

131131
conda run -n "${CONDA_ENV}" python --version
132132

133-
if [[ ${MATRIX_GPU_ARCH_VERSION} != '12.4' ]]; then
133+
# we only have one cuda version for pypi build
134+
if [[ ${MATRIX_GPU_ARCH_VERSION} != '12.6' ]]; then
134135
exit 0
135136
fi
136137

0 commit comments

Comments
 (0)