Skip to content

Commit 5de9e80

Browse files
Relax UCX pinning (#113)
automerged PR by conda-forge/automerge-action
2 parents 2969ee2 + bdb06cd commit 5de9e80

File tree

8 files changed

+55
-23
lines changed

8 files changed

+55
-23
lines changed

.azure-pipelines/azure-pipelines-osx.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.ci_support/osx_64_.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ MACOSX_DEPLOYMENT_TARGET:
33
c_compiler:
44
- clang
55
c_compiler_version:
6-
- '13'
6+
- '14'
77
channel_sources:
88
- conda-forge
99
channel_targets:
1010
- conda-forge main
1111
cxx_compiler:
1212
- clangxx
1313
cxx_compiler_version:
14-
- '13'
14+
- '14'
1515
enable_cuda:
1616
- 'False'
1717
fortran_compiler:
1818
- gfortran
1919
fortran_compiler_version:
20-
- '9'
20+
- '11'
2121
macos_machine:
2222
- x86_64-apple-darwin13.4.0
2323
mpi_type:

.ci_support/osx_arm64_.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
33
c_compiler:
44
- clang
55
c_compiler_version:
6-
- '13'
6+
- '14'
77
channel_sources:
88
- conda-forge
99
channel_targets:
1010
- conda-forge main
1111
cxx_compiler:
1212
- clangxx
1313
cxx_compiler_version:
14-
- '13'
14+
- '14'
1515
enable_cuda:
1616
- 'False'
1717
fortran_compiler:

.scripts/build_steps.sh

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.scripts/run_osx_build.sh

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE.txt

Lines changed: 22 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build-locally.py

Lines changed: 13 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% set version = "4.1.4" %}
22
{% set major = version.rpartition('.')[0] %}
3-
{% set build = 0 %}
3+
{% set build = 1 %}
44

55
# give conda package a higher build number
66
{% if mpi_type == 'conda' %}
@@ -51,7 +51,7 @@ outputs:
5151
- mpi 1.0 openmpi
5252
run_constrained:
5353
- cudatoolkit >= {{ cudatoolkit }} # [enable_cuda]
54-
- {{ pin_compatible("ucx", max_pin="x.x") }} # [enable_cuda]
54+
- {{ pin_compatible("ucx", max_pin="x") }} # [enable_cuda]
5555
test:
5656
script: run_test.sh
5757
files:

0 commit comments

Comments
 (0)