Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restrict conda pin to 23.7.3 to macos only #4754

Merged
merged 1 commit into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/actions/setup-binary-builds/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,6 @@ runs:
set -euxo pipefail
CONDA_ENV="${RUNNER_TEMP}/conda_environment_${GITHUB_RUN_ID}"

# Both conda-build and conda need to be advanced togeather.
# This will make system conda use required value.
conda install --yes conda=23.7.3

if [[ "${PYTHON_VERSION}" = "3.11" ]]; then

if [[ "${PACKAGE_TYPE:-}" == "conda" ]]; then
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_conda_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ jobs:
export USE_OPENMP="0"
fi

# conda 23.10 is installed by default on macos M1
# and this creates an issue. Hence downgrading it here
conda install --yes conda=23.7.3

${CONDA_RUN} conda build \
-c defaults \
-c "pytorch-${CHANNEL}" \
Expand Down
Loading