From cc660d38ac533b92f3ad4cb1105f7a16f74b9f09 Mon Sep 17 00:00:00 2001 From: Nikita Shulga <2453524+malfet@users.noreply.github.com> Date: Thu, 25 Sep 2025 01:10:14 +0000 Subject: [PATCH] [CI] Install libuv for Win testing (#163797) Current working theory why https://hud.pytorch.org/pytorch/pytorch/commit/f0078941cf4e9cfa1a464d0d12d999926fdd8cc5 caused a regression, are because Windows CI no longer could be build with distributed, as it could not find libuv Pull Request resolved: https://github.com/pytorch/pytorch/pull/163797 Approved by: https://github.com/wdvr --- .github/actions/setup-win/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-win/action.yml b/.github/actions/setup-win/action.yml index 37cec0c57153..2ea330f93b49 100644 --- a/.github/actions/setup-win/action.yml +++ b/.github/actions/setup-win/action.yml @@ -59,7 +59,7 @@ runs: set -x # Create new py_tmp env with python-version - ${CONDA} create -y -n py_tmp python=${PYTHON_VERSION} intel-openmp + ${CONDA} create -y -n py_tmp python=${PYTHON_VERSION} intel-openmp libuv PYTHON3=$(${CONDA_RUN} -n py_tmp which python3) EXIT_CODE=$?