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 947722a commit a216c7bCopy full SHA for a216c7b
packaging/pre_build_script.sh
@@ -1,5 +1,10 @@
1
#!/bin/bash
2
3
+CONDA_CHANNEL=""
4
+if [["$PYTHON_VERSION" == "3.13t" ]]; then
5
+ CONDA_CHANNEL="-c conda-forge"
6
+fi
7
+
8
if [[ "$(uname)" == Darwin ]]; then
9
# Uninstall Conflicting jpeg brew formulae
10
jpeg_packages=$(brew list | grep jpeg)
@@ -32,7 +37,7 @@ else
32
37
conda install -yq ffmpeg=4.2 libjpeg-turbo -c pytorch-nightly
33
38
fi
34
39
35
- conda install libwebp -yq
40
+ conda install -y libwebp ${CONDA_CHANNEL}
36
41
conda install libjpeg-turbo -c pytorch
42
yum install -y freetype gnutls
43
pip install auditwheel
0 commit comments