We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5585c05 commit 9631292Copy full SHA for 9631292
conda/build_pytorch.sh
@@ -337,12 +337,14 @@ for py_ver in "${DESIRED_PYTHON[@]}"; do
337
# Build the package
338
echo "Build $build_folder for Python version $py_ver"
339
conda config --set anaconda_upload no
340
- conda install -y conda-package-handling conda==23.5.2
341
342
if [[ "$OSTYPE" == "msys" ]]; then
343
# Don't run tests on windows (they were ignored mostly anyways)
344
NO_TEST="--no-test"
+ # Fow windows need to keep older conda version
345
+ conda install -y conda-package-handling conda==22.9.0
346
else
347
+ conda install -y conda-package-handling conda==23.5.2
348
# NS: To be removed after conda docker images are updated
349
conda update -y conda-build
350
fi
0 commit comments