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 cf581d4 commit 0341cccCopy full SHA for 0341ccc
conda_build_config.yaml
@@ -7,14 +7,24 @@ numpy:
7
ogre:
8
- 14.2.*
9
10
-cdt_name: # [linux]
11
- - cos7 # [linux]
+cdt_name:
+ - ${{ "cos7" if linux }}
12
13
python:
14
- 3.12.* *_cpython
15
python_impl:
16
- cpython
17
18
+c_stdlib:
19
+ - ${{ "sysroot" if linux }}
20
+ - ${{ "macosx_deployment_target" if osx }}
21
+ - ${{ "vs" if win }}
22
+c_stdlib_version:
23
+ - ${{ "2.17" if linux }}
24
+ - ${{ "10.14" if osx and x86_64 }}
25
+ - ${{ "11.0" if osx and arm64 }}
26
+
27
28
# # Project overrides
29
# macos_min_version: # [osx and x86_64]
30
# - 10.14 # [osx and x86_64]
0 commit comments